Skip to content

Commit

Permalink
Add Support for Selenium Tests
Browse files Browse the repository at this point in the history
- Adds Selenium implementation for Faces Ajax test
  • Loading branch information
brideck committed Mar 1, 2023
1 parent 5e3a5e1 commit 2f16cdd
Show file tree
Hide file tree
Showing 8 changed files with 1,300 additions and 23 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
<arquillian.container.se.api.version>1.0.1.Final</arquillian.container.se.api.version>
<apache.httpclient.version>3.1</apache.httpclient.version>
<htmlunit.version>2.50.0</htmlunit.version>
<selenium.version>4.7.2</selenium.version>
<!-- Required for distribution build, should be overriden for each build -->
<cdi.tck.version>${project.version}</cdi.tck.version>
<weld.version>5.0.0.SP2</weld.version>
Expand Down Expand Up @@ -181,6 +182,24 @@
<version>${apache.httpclient.version}</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>${selenium.version}</version>
</dependency>

<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.3.1</version>
</dependency>

<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
Expand Down
15 changes: 15 additions & 0 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,21 @@
<artifactId>commons-httpclient</artifactId>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
</dependency>

<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
</dependency>

<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
Expand Down
Loading

0 comments on commit 2f16cdd

Please sign in to comment.