Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ WebDriver webDriver=util.driver;
The framework will also take care of the entire configuration of the Drivers, you just need to specify what supported WebExplorers do you want to run your scenarios on.


* Version: [0.3.2](https://github.com/orgs/WhiteOrganization/packages)
* Version: [0.3.3](https://github.com/orgs/WhiteOrganization/packages)

This is still in development and some methods are being constantly added as they are used. Please help us by requesting those you need or need more detailed documentation.

Expand All @@ -48,7 +48,7 @@ by including it in your POM](https://maven.pkg.github.com/whiteorganization/whit
<dependency>
<groupId>io.github.whiteorganization</groupId>
<artifactId>white-selenium-framework</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
</dependency>
```
If used on a long-term heavy-use project we recommend:
Expand All @@ -61,7 +61,7 @@ If used on a long-term heavy-use project we recommend:
<dependency>
<groupId>io.github.whiteorganization</groupId>
<artifactId>white-selenium-framework</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<!-- You need to manually import this library due to lack of maintenance on White_SeleniumFramework -->
<exclusions>
<exclusion>
Expand Down Expand Up @@ -101,7 +101,7 @@ and import the dependency like this:
<dependency>
<groupId>com.github.WhiteOrganization</groupId>
<artifactId>White_SeleniumFramework</artifactId>
<version>white-selenium-framework-0.3.2</version>
<version>white-selenium-framework-0.3.3</version>
</dependency>
```

Expand Down
24 changes: 13 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.whiteorganization</groupId>
<artifactId>white-selenium-framework</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>A Selenium Framework that will help to execute tests and custom scenarios faster and reduce the effort
to access many sections Selenium related.
</description>
<url>https://github.com/WhiteOrganization/White_SeleniumFramework</url>

<properties>
<!--region Project Configurations FILL THESE-->
<!-- region Project Configurations FILL THESE-->
<!-- WARNING: add release scope if 1.9 and older versions are used at build/plugins/plugin/[maven-compiler-plugin]/configuration-->
<java.version>8</java.version>
<selenium.version>4.7.2</selenium.version>
Expand Down Expand Up @@ -63,12 +63,23 @@
<version>${selenium.version}</version>
</dependency>

<!-- region SeleniumChromeDriver -->
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<!-- endregion SeleniumChromeDriver -->

<!-- region HtmlUnitDriver -->
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/htmlunit-driver -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<!-- endregion -->
<!-- endregion Pure Selenium -->

<!-- region bonigarcia WebDriverManager -->
Expand All @@ -82,15 +93,6 @@

<!-- endregion Selenium -->

<!-- region HtmlUnitDriver -->
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/htmlunit-driver -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<!-- endregion -->

<!-- region Logs -->
<dependency>
<groupId>org.slf4j</groupId>
Expand Down