L17.1: TestNG

PHOTO EMBED

Thu Oct 19 2023 02:03:44 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

   @Test
    public void homepageNavigation() {
        ChromeOptions options = new ChromeOptions();
        options.addArguments("--remote-allow-origins=*");

        WebDriver driver = new ChromeDriver(options);
        driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));

        String expectedUrl = "https://qa.koel.app/";
        driver.get(expectedUrl);

        Assert.assertEquals(driver.getCurrentUrl(), expectedUrl);

        driver.quit();
    }
content_copyCOPY