We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788b531 commit 15b294bCopy full SHA for 15b294b
README.md
@@ -77,7 +77,7 @@ public class WaitTest {
77
public WebDriver getDriver() {
78
SeleniumWaitOptions options = SeleniumWaitOptions.builder()
79
.parseAnnotations(true)
80
- .defaultWaitTime(Duration.ofSeconds(30))
+ .defaultWaitTime(Duration.ofSeconds(30))
81
.build();
82
83
SeleniumWaitPlugin seleniumWaitPlugin = new SeleniumWaitPlugin(new ChromeDriver(), options);
@@ -86,9 +86,9 @@ public class WaitTest {
86
87
@Test
88
public void test() {
89
- WebDriver driver = getDriver();
90
- searchAmazon(driver);
91
- searchAmazonWithoutWait(driver);
+ WebDriver driver = getDriver();
+ searchAmazon(driver);
+ searchAmazonWithoutWait(driver);
92
searchAmazonWithCustomWait(driver);
93
}
94
0 commit comments