Skip to content

Commit

Permalink
Merge pull request #80 from Umutayb/version-bump-up#1.9.4
Browse files Browse the repository at this point in the history
Updated core library
  • Loading branch information
Umutayb authored Nov 21, 2023
2 parents 984dd18 + 58a21c3 commit d084f59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<buildDirectory>${project.basedir}/out/artifacts/POM-Framework_jar</buildDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.version>3.8.0</maven.compiler.version>
<java.utilities.version>1.5.7</java.utilities.version>
<java.utilities.version>1.5.8</java.utilities.version>
<gpt.utilities.version>0.1.3</gpt.utilities.version>
<docker-java.version>3.3.0</docker-java.version>
<selenium.version>4.12.1</selenium.version>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/pickleib/web/driver/WebDriverFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ public class WebDriverFactory implements DriverFactory {
/**
* determines usage of web driver manager
*/
static Boolean allowRemoteOrigin = Boolean.parseBoolean(ContextStore.get("allow-remote-origin", "true"));;
static Boolean allowRemoteOrigin = Boolean.parseBoolean(ContextStore.get("allow-remote-origin", "true"));

/**
* The logging level used by Pickleib.
* This value can be set in the properties file with the key "selenium-log-level".
* If not specified in the properties file, the default value is "off".
*/
static String logLevel = ContextStore.get("selenium-log-level", "off");;
static String logLevel = ContextStore.get("selenium-log-level", "off");

/**
* The URL of the Selenium Grid hub.
Expand Down

0 comments on commit d084f59

Please sign in to comment.