您好我正在使用selenium webdriver并在运行以下脚本时,我在脚本中突出显示的地方面临陈旧元素异常错误。
我的脚本停在那里,我无法运行。
错误消息是 - Stale Element异常错误。在缓存中找不到该元素,也许页面在查找后已经发生了变化。
在这种情况下,请任何人帮助我,并指导我纠正这个错误。
此致 Vignesh K S
@Test
public void testClient() throws Exception {
driver.get("http://t1accounts.govreports.com.au/?service=govreports");
driver.findElement(By.id("Password")).clear();
driver.findElement(By.id("Password")).sendKeys("Viki2607");
driver.findElement(By.id("UserName")).clear();
driver.findElement(By.id("UserName")).sendKeys("vignesh@eimpact.com.au");
driver.findElement(By.id("btnLogin")).click();
driver.findElement(By.xpath(".//*[@id='side-menu']/li[2]/a/span")).click();
driver.findElement(By.cssSelector("span.hide380")).click();
driver.findElement(By.id("Individual")).click();
//driver.wait(5);
**driver.findElement(By.id("ABN")).clear();**
driver.findElement(By.id("ABN")).sendKeys("38091241128");
driver.findElement(By.id("TFN")).clear();
driver.findElement(By.id("TFN")).sendKeys("100000001");
driver.findElement(By.id("BusinessName")).clear();
driver.findElement(By.id("BusinessName")).sendKeys("LORGE CONSULTING (AUSTRALIA) PTY LTD");
driver.findElement(By.id("TradingName")).clear();
driver.findElement(By.id("TradingName")).sendKeys("LORGE CONSULTING (AUSTRALIA) PTY LTD");
//driver.findElement(By.xpath("//ul[@id='Individual_Salutation_listbox']/li")).click();
driver.findElement(By.id("Individual_Salutation")).clear();
driver.findElement(By.id("Individual_Salutation")).sendKeys("Ms");
//new Select(driver.findElement(By.id("Individual_Salutation"))).selectByVisibleText("Mr");
//driver.findElement(By.id("Individual_Salutation")).sendKeys("Mr");
driver.findElement(By.id("Individual_FirstName")).clear();
driver.findElement(By.id("Individual_FirstName")).sendKeys("Joan");
driver.findElement(By.id("Individual_LastName")).clear();
driver.findElement(By.id("Individual_LastName")).sendKeys("Ignatius");
driver.findElement(By.id("Individual_Phone")).clear();
driver.findElement(By.id("Individual_Phone")).sendKeys("042323155");
driver.findElement(By.id("Individual_Email")).clear();
driver.findElement(By.id("Individual_Email")).sendKeys("test@govreports.com.au");
driver.findElement(By.id("PostalAddress_Line1")).clear();
driver.findElement(By.id("PostalAddress_Line1")).sendKeys("Walker Street");
driver.findElement(By.id("PostalAddress_City")).sendKeys("SYDNEY");
driver.findElement(By.id("PostalAddress_Region")).sendKeys("NSW");
driver.findElement(By.id("PostalAddress_Postcode")).sendKeys("1001");
Thread.sleep(5000);
driver.findElement(By.id("PostalAddress_Country")).sendKeys("Australia");
//Select objSelect = new Select(null);
//new Select(driver.findElement(By.id("PostalAddress_City"))).selectByVisibleText("SYDNEY, NSW, Australia, 1001");
driver.findElement(By.id("saveClient")).click();
Thread.sleep(5000);
}
答案 0 :(得分:1)
只是工作正常,你可能想要添加一个3-5秒的隐式等待,因为应用程序很慢。
或者,在元素 .//* [@ id ='side -menu'] / li [2] / a / span
你也可以做一个
driver.navigate()。to(“http ://t1hub.govreports.com.au/App/#/Clients/MyClients“);



 我相信你所在的地方得到的问题是 ABN
。然而,如果引起适当的等待,它的效果会很好。
答案 1 :(得分:0)
发生陈旧元素异常时!!
当支持这些文本框/按钮/链接的库发生更改时,可能会发生过时的元素异常,这意味着元素相同,但现在网站中的引用已更改,而不会影响定位符。因此,由于页面已使用更新的库刷新,因此存储在缓存中的参考(包括库参考)现在变得过时或过时。
for(int j=0; j<5;j++)
try {
WebElement elementName=driver.findElement(By.id(“Individual_Salutation”));
break;
} catch(StaleElementReferenceException e){
e.toString();
System.out.println(“Stale element error, trying :: ” + e.getMessage());
}