目标:逐个点击子链接并验证页面存在的脚本
场景: 当我将鼠标悬停在类别链接上时 - 它会在右侧显示子类别链接(列表):
当我收回悬停时 - 链接(列表)不会显示:
自动化: 我试图将鼠标悬停在类别链接上! 因此捕获了类别链接的Xpath !! 鼠标应用动作!! On Mouse hover捕获Sub链接的x路径为0 index(start)! 应用“For Each loop”(提前For循环)逐个捕获子链接x路径!! 在上面的for循环中,使用“action”点击子链接!!
问题:它点击索引0处的子链接,在以后的迭代中,它无法捕获子链接,即使鼠标悬停在类别链接上已完成...
如何在第二次,第三次........迭代中获得子链接..
以下是代码:
public static WebElement Add_EditCorpUser(WebDriver driver) throws InterruptedException
{
driver.switchTo().defaultContent();
driver.switchTo().frame(1);
Actions action = new Actions(driver);
element=driver.findElement(By.xpath(".//td[@title='Security Admin']/following::td[1]/span[contains(text(),'Security')]"));
action.moveToElement(element).build().perform();
List<WebElement> arrayList=driver.findElements(By.xpath(".//table[@class='hideHeader']//span[@id='subMenu']//div[@id='i_2sub']//tbody/tr"));
List<String> linksname = new ArrayList<>();
for (WebElement w:arrayList) {
linksname.add(w.getText());
System.out.println("value ---------------- --"+ linksname);
action.moveToElement(w).click().build().perform();
Thread.sleep(10000);
driver.switchTo().defaultContent();
driver.switchTo().frame(1);
action.moveToElement(driver.findElement(By.xpath(".//td[@title='Security Admin']/following::td[1]/span[contains(text(),'Security')]"))).build().perform();
Thread.sleep(10000);
}
----------------------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------根据评论修改代码------------- ---------
public static WebElement element=null;
public static WebElement Add_EditCorpUser(WebDriver driver) throws InterruptedException
{
driver.switchTo().defaultContent();
driver.switchTo().frame(1);
Actions action = new Actions(driver);
element=driver.findElement(By.xpath(".//td[@title='Security Admin']/following::td[1]/span[contains(text(),'Security')]"));
action.moveToElement(element).build().perform();
List<WebElement> arrayList=driver.findElements(By.xpath(".//table[@class='hideHeader']//span[@id='subMenu']//div[@id='i_2sub']//tbody/tr"));
String[] xpa=new String[arrayList.size()];
for(int i=1;i<arrayList.size();i++)
{
xpa[i]="\".//table[@class='hideHeader']//span[@id='subMenu']//div[@id='i_2sub']//tbody/tr["+i+"]\"";
}
for(String a: xpa )
{
if(a!=null){
System.out.println(a);
action.moveToElement(driver.findElement(By.xpath(a))).click().build().perform();
Thread.sleep(10000);
driver.switchTo().defaultContent();
driver.switchTo().frame(1);
System.out.println("Switched to new frame");
action.moveToElement(element).build().perform();
}
答案 0 :(得分:1)
当您搜索元素时,在对其执行任何操作之前,页面已更改/重新加载,您将获得陈旧元素。
在页面中执行任何操作之前,请确保页面已完全加载。 首先等待加载页面 - &gt;然后找到元素并执行动作。
如果您保存数组中的所有链接,并且您想要点击它们中的每一个,它将无效 您需要有一个包含链接选择器的数组,并在for循环中使用该数组。
在第二个代码中,您有无效的选择器,您有额外的双引号。法
xpa[i]="//table[@class='hideHeader']//span[@id='subMenu']//div[@id='i_2sub']//tbody/tr["+i+"]";
请记住,xpath是一个字符串,使用连接,打印字符串并在浏览器中检查并更新以获得有效的xpath。