This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 67d4d28708 selenium upgrade, extra option flag to get chrome working, 
fixes #2760
     new d72d1bac02 Merge pull request #2761 from hansva/master
67d4d28708 is described below

commit 67d4d2870855f7cf9c7c539f30f6c76b12a51416
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Wed Mar 22 15:35:10 2023 +0100

    selenium upgrade, extra option flag to get chrome working, fixes #2760
---
 integration-tests/hopweb/pom.xml                                        | 2 +-
 .../hopweb/src/test/java/org/apache/hop/ui/hopgui/HopWebTest.java       | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/integration-tests/hopweb/pom.xml b/integration-tests/hopweb/pom.xml
index 8eaad51f75..f81f4c7754 100644
--- a/integration-tests/hopweb/pom.xml
+++ b/integration-tests/hopweb/pom.xml
@@ -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>
diff --git 
a/integration-tests/hopweb/src/test/java/org/apache/hop/ui/hopgui/HopWebTest.java
 
b/integration-tests/hopweb/src/test/java/org/apache/hop/ui/hopgui/HopWebTest.java
index b1bf1ffd6a..3763c1ce0a 100644
--- 
a/integration-tests/hopweb/src/test/java/org/apache/hop/ui/hopgui/HopWebTest.java
+++ 
b/integration-tests/hopweb/src/test/java/org/apache/hop/ui/hopgui/HopWebTest.java
@@ -102,6 +102,7 @@ public class HopWebTest {
         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);

Reply via email to