我编写了一个代码来验证该行中是否存在给定文本但是如何在特定单元格中单击?请帮帮我 以下是我为验证文本而编写的代码。
package com.Tables;
import java.util.List;
public class HandlingTables {
public static void main(String[] args) throws InterruptedException {
String s="";
System.setProperty("webdriver.chrome.driver", "D:/chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.w3schools.com/html/html_tables.asp");
WebElement table = driver.findElement(By.className("w3-table-all"));
List<WebElement> allrows = table.findElements(By.tagName("tr"));
List<WebElement> allcols = table.findElements(By.tagName("td"));
System.out.println("Number of rows in the table "+allrows.size());
System.out.println("Number of columns in the table "+allcols.size());
for(WebElement row: allrows){
List<WebElement> Cells = row.findElements(By.tagName("td"));
for(WebElement Cell:Cells){
s = s.concat(Cell.getText());
}
}
System.out.println(s);
if(s.contains("Jackson")){
System.out.println("Jackson is present in the table");
}else{
System.out.println("Jackson is not available in the table");
}
Thread.sleep(10000);
driver.quit();
}
}
答案 0 :(得分:0)
你可以修改你的循环来点击,而不是连接一个巨大的字符串
for(WebElement row: allrows){
List<WebElement> Cells = row.findElements(By.tagName("td"));
for(WebElement Cell:Cells){
if (Cell.getText().contains("Jackson"))
Cell.click();
}
}
请注意,点击<td>
可能实际上并未触发,因为<td>
可能没有收听点击事件。如果TD中有链接,那么您可以执行以下操作:
Cell.findElement("a").click();
答案 1 :(得分:0)
您必须构建一个动态选择器才能实现此目的。
例如:
private String rowRootSelector = "tr";
private String specificCellRoot = rowRootSelector + ":nth-of-type(%d) > td:nth-of-type(%d)";
在将Row和Column作为输入参数的方法中,必须构建选择器。
String selector = String.format(specificCellRoot, rowIndex, columnIndex);
现在,您可以在该网络元素上单击或执行任何其他操作。
driver.findElement(By.cssSelector(selector));