UnhandledAlertException:元素可以执行,但不能在系统中单击

时间:2019-01-18 08:43:09

标签: java selenium-webdriver

可以单击“联系人”(Contact)的元素,但是可以单击“平等”(Equity)的元素,该行可以执行但在系统中未单击。系统仍然显示“联系”页面。在eclipse中,它在线程“ main” org.openqa.selenium.UnhandledAlertException:中显示异常:

代码是

Actions linktext1 = new Actions(driver);
WebElement contact = driver.findElement(By.xpath("//a[contains(text(),'Contact')]"));
linktext1.moveToElement(contact).build().perform();
driver.findElement(By.xpath("//a[contains(text(),'Contact')]")).click();
driver.findElement(By.xpath("//a[@onclick=\"navigateTo('CompanyCustomerEquity.do?event=edit_prepare_company_customer_equity')\"]")).click();
driver.findElement(By.xpath("//a[contains(text(),'Ownership')]")).click();

0 个答案:

没有答案