Skip to content

Commit 86937e2

Browse files
committed
remove cookie consent for ManyToolsForm, restore normal pageLoadStrategy
1 parent 1241154 commit 86937e2

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/test/java/manytools/ManyToolsForm.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ protected ManyToolsForm(String name) {
2525
public T open() {
2626
AqualityServices.get(IActionRetrier.class).doWithRetry(() -> {
2727
AqualityServices.getBrowser().goTo(BASE_URL + getUrlPart());
28-
AqualityServices.getBrowser().waitForPageToLoad();
29-
if (btnAgree.state().isDisplayed())
30-
{
31-
btnAgree.click();
32-
btnAgree.state().waitForNotDisplayed();
33-
}
3428
}, Collections.singletonList(TimeoutException.class));
3529
return (T) this;
3630
}

src/test/resources/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"loggingPreferences": {
2020
"Performance": "All"
2121
},
22-
"pageLoadStrategy": "eager",
22+
"pageLoadStrategy": "normal",
2323
"startArguments": ["--disable-search-engine-choice-screen"],
2424
"excludedArguments": ["enable-automation"]
2525
},

src/test/resources/settings.local.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"loggingPreferences": {
2020
"Performance": "All"
2121
},
22-
"pageLoadStrategy": "eager",
22+
"pageLoadStrategy": "normal",
2323
"startArguments": ["--disable-search-engine-choice-screen"],
2424
"excludedArguments": ["enable-automation"]
2525
},

0 commit comments

Comments
 (0)