Ana içeriğe atla

Kayıtlar

selenium kod etiketine sahip yayınlar gösteriliyor

Selenium Kod Denemeleri

Google'ın Title'ını Kontrol import static org.junit.Assert.*; import java.util.concurrent.TimeUnit; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.WebDriver; //import static org.junit.Assert.assertEquals; public class VerifyTitle_Google {     private WebDriver driver;     @Before     public void setUp() throws Exception {         System.setProperty("webdriver.gecko.driver","C:\\Selenium\\geckodriver-v0.23.0-win64\\geckodriver.exe");//mozillanin herseyine gecko yazican         driver = new FirefoxDriver();         driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);     }     @After     public void tearDown() throws Exception {         driver...