diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-03-15 16:51:12 +0000 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-03-18 11:27:58 +0000 |
commit | a64494f7e900680c08f1e4f6451a15debeb08853 (patch) | |
tree | d34982dcef1ebe8ff261ede750f3574599cc9e7b /integration-tests/pom.xml | |
parent | 183b3b13a2fc879256140f0865346f537b64e899 (diff) |
Update integration UI tests selenium image
The integration UI tests were using a very old selenium image
"selenium/standalone-firefox:2.53.1" (from 4 years ago), which was
bringing problems related with outdated version of firefox/selenium
standalone.
Fixes broken tests after the update.
Updates also the gecko driver to the 0.29.0 version.
Change-Id: I1f7ad17c649e4015cde5c1932f9da08e36ca0aec
Issue-ID: SDC-3516
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'integration-tests/pom.xml')
-rw-r--r-- | integration-tests/pom.xml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 80eef5bd15..b025da202e 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -37,7 +37,7 @@ limitations under the License. <properties> <selenium.version>3.141.59</selenium.version> - <gecko.driver.version>0.27.0</gecko.driver.version> + <gecko.driver.version>0.29.0</gecko.driver.version> <!-- SDC Startup parameters --> <it.env.name>integration-test</it.env.name> <it.cassandra.port>9042</it.cassandra.port> @@ -50,7 +50,7 @@ limitations under the License. <it.sdc-be.plugins>${project.build.directory}/plugins/sdc-be</it.sdc-be.plugins> <it.shared.volume>/tmp/sdc-integration-tests</it.shared.volume> <it.docker.version>latest</it.docker.version> - <it.ui.firefox.version>2.53.1</it.ui.firefox.version> + <it.ui.firefox.version>86.0</it.ui.firefox.version> <!-- parser--> <sdc-tosca-parser.version>1.6.5</sdc-tosca-parser.version> @@ -216,7 +216,7 @@ limitations under the License. <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> - <version>4.0.0-alpha-2</version> + <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> @@ -740,12 +740,10 @@ limitations under the License. <!--<port>5900</port>--> <!-- VNC port for viewing the browser result --> <!-- password to access is "secret" --> - </ports> </tcp> </wait> <env> - <SE_OPTS>-debug</SE_OPTS> <JAVA_OPTS>-Xmx512m</JAVA_OPTS> <!--<START_XVFB>false</START_XVFB>--> <SCREEN_WIDTH>1920</SCREEN_WIDTH> |