自动化在\ https://app.crossbrowsertesting.com

时间:2017-04-21 11:10:26

标签: selenium-webdriver

我想在https://app.crossbrowsertesting.com中使用实时测试自动化脚本,但我无法在那里找到元素,请帮助获取此

1 个答案:

答案 0 :(得分:0)

通过Selenium 3.x找到登录https://app.crossbrowsertesting.com的代码,最新的Chrome驱动程序& Google Chrome 58.x通过有效凭据:

    driver.navigate().to("https://app.crossbrowsertesting.com");
    driver.findElement(By.id("inputEmail")).sendKeys("your_email@gmail.com");
    driver.findElement(By.id("inputPassword")).sendKeys("your_password");
    driver.findElement(By.xpath("//button[text()='Log In']")).click();

如果这有助于您,请告诉我。