Skip to content

Commit

Permalink
Merge pull request #2761 from hansva/master
Browse files Browse the repository at this point in the history
selenium upgrade, extra option flag to get chrome working, fixes #2760
  • Loading branch information
hansva committed Mar 22, 2023
2 parents b59ce3a + 67d4d28 commit d72d1ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/hopweb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<selenium.version>4.4.0</selenium.version>
<selenium.version>4.8.1</selenium.version>
<junit.version>5.8.2</junit.version>
<surefire.version>2.22.2</surefire.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ public static void setUp() throws Exception {
options.addArguments("--no-sandbox");
options.addArguments("--disable-dev-shm-usage");
options.addArguments("--window-size=1280,800");
options.addArguments("--remote-allow-origins=*");

driver = new ChromeDriver(options);
actions = new Actions(driver);
Expand Down

0 comments on commit d72d1ba

Please sign in to comment.