Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
@Test(groups = "AIO@AIO-FOLDER-Imports/TestNg")
    public void testGoogle() {
        DriverManager.get().get("https://www.google.com");
        SoftAsserts.getSoftAssert().assertEquals(2,2, "Verify that you are on google");
        SoftAsserts.getSoftAssert().assertEquals(true,false, "Verify that there is a search button");
    }

...