Skip to content

Commit

Permalink
use edge
Browse files Browse the repository at this point in the history
  • Loading branch information
gtiwari333 committed Dec 28, 2023
1 parent 000e794 commit 61418ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: browser-actions/setup-firefox@v1
- uses: browser-actions/setup-edge@v1

- name: Set up JDK 21
uses: actions/setup-java@v1
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/gt/app/frwk/BaseSeleniumTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public abstract class BaseSeleniumTest {
@BeforeAll
public static void init() {
Configuration.headless = true;
Configuration.browser = Browsers.CHROME;
Configuration.browser = Browsers.EDGE;


Configuration.baseUrl = "http://localhost:8081";
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/gt/app/frwk/SampleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SampleTest {
void setup() {
Configuration.baseUrl = "https://en.wikipedia.org/wiki/Main_Page";
Configuration.headless = true;
Configuration.browser = Browsers.CHROME;
Configuration.browser = Browsers.EDGE;
}

@Test
Expand Down

0 comments on commit 61418ca

Please sign in to comment.