-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use driver finder for all binary location
- Loading branch information
1 parent
5fc5d42
commit 8f83ae4
Showing
58 changed files
with
1,113 additions
and
1,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 4 additions & 8 deletions
12
examples/java/src/test/java/dev/selenium/BaseChromeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
package dev.selenium; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
import org.openqa.selenium.chrome.ChromeDriver; | ||
|
||
public class BaseChromeTest extends BaseTest { | ||
|
||
@BeforeEach | ||
public void setup() { | ||
System.setProperty("webdriver.chrome.logfile", "chromedriver.log"); | ||
System.setProperty("webdriver.chrome.verboseLogging", "true"); | ||
driver = new ChromeDriver(); | ||
} | ||
|
||
@BeforeEach | ||
public void setup() { | ||
startChromeDriver(); | ||
} | ||
} |
10 changes: 4 additions & 6 deletions
10
examples/java/src/test/java/dev/selenium/BaseFirefoxTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
package dev.selenium; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
import org.openqa.selenium.firefox.FirefoxDriver; | ||
|
||
public class BaseFirefoxTest extends BaseTest { | ||
|
||
@BeforeEach | ||
public void setup() { | ||
driver = new FirefoxDriver(); | ||
} | ||
|
||
@BeforeEach | ||
public void setup() { | ||
startFirefoxDriver(); | ||
} | ||
} |
Oops, something went wrong.