Skip to content

Commit 176e081

Browse files
authored
Update WorkingWithBrowserModals.md
1 parent 9672df4 commit 176e081

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/WorkingWithBrowserModals.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ To incorporate alert handling into your web application page collection, declare
1010
###### Alert handler
1111
```java
1212
public class ExamplePage extends Page implements DetectsLoadCompletion {
13+
1314
...
15+
1416
public ExamplePage(WebDriver driver) {
1517
super(driver);
1618
alertHandler = new ExampleAlertHandler(this);
1719
}
18-
private final AlertHandler alertHandler;
20+
21+
private final AlertHandler alertHandler;
22+
private boolean isLoaded;
1923

2024
...
2125

0 commit comments

Comments
 (0)