有人请帮助我。我只是想把文本输入到文本框中,但是长时间面对同样的错误。
我有一个构造函数类和主类:
无法找到元素: {“method”:“xpath”,“selector”:“.//* [@ id ='billing:firstname']”}命令 持续时间或超时:20.24秒
CODE:
@Test
public void FillFormPTC() throws InterruptedException {
SecondCat home= new SecondCat(driver);
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
// driver.switchTo().defaultContent();
// WebElement input = (new WebDriverWait(driver, 25)).until(ExpectedConditions.presenceOfElementLocated(By.xpath(".//*[@id='billing:firstname']")));
home.TextFirstname("joe");
}