Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LambdaTest/java-testng-selenium
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Ankitac3003/java-testng-selenium
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 21, 2025

  1. main.yml

    java test ng
    Ankitac3003 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    efd3279 View commit details
  2. added creds

    Ankitac3003 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    030f70c View commit details
  3. Delete .github/workflows/main.yml

    deleted filw
    Ankitac3003 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f6fd0ae View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 src/test/java/com/lambdatest/TestNGTodo1.java
6 changes: 3 additions & 3 deletions src/test/java/com/lambdatest/TestNGTodo1.java
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@ public class TestNGTodo1 {

@BeforeMethod
public void setup(Method m, ITestContext ctx) throws MalformedURLException {
String username = System.getenv("LT_USERNAME") == null ? "Your LT Username" : System.getenv("LT_USERNAME");
String authkey = System.getenv("LT_ACCESS_KEY") == null ? "Your LT AccessKey" : System.getenv("LT_ACCESS_KEY");
String username = "ankitclambdatest";
String authkey = "LT_OnEL30AtoPH0BkcY83K0VnpQOcfFpX71axsfQgHGLhvNfUP";
;
String hub = "@hub.lambdatest.com/wd/hub";

@@ -116,4 +116,4 @@ public void tearDown() {
driver.quit();
}

}
}