Added all

This commit is contained in:
Guillem Hernandez Sola
2026-04-20 18:09:18 +02:00
parent 73c7b7a45b
commit d39e439da8

View File

@@ -0,0 +1,13 @@
package com.agile611.testng.webdriver;
import org.testng.annotations.Test;
public class LoginTest extends BaseRemoteWebDriverTest {
@Test
public void testApp() throws InterruptedException {
driver.navigate().to("https://www.duckduckgo.com");
Thread.sleep(5000);
}
}