尝试使用Selenium WebDriver for Java从HTML表中获取数据

时间:2015-03-19 10:11:40

标签: java selenium selenium-webdriver

我对Selenium很新,我一直试图让测试套件从表中收集数据。我对如何做到这一点没有任何线索。

这是我正在使用的表格: http://i.imgur.com/vdITVug.jpg

新约会(日期)是在当天的随机时间随机添加的。我已经创建了一个测试套件,可以在此页面上不断刷新。下一步是保存表中的所有日期,创建一个循环来比较刷新后的日期是否与原始存储日期不同。

如果不同,请通知用户。

这是我试图完成的理论范例。

//Navigate to the appointment page

//Store all the current dates from the table

  for (until a new appointment pops up)

    {
     //Refresh the page
    // Compare the dates to the stored dates
       if (the dates =/ stored dates)
         {
          notify the user(me in this case)
         }
    }

我还想弄清楚如何找到表格的元素ID。

这是一个包含一些html代码的屏幕截图:http://i.imgur.com/GD4yOp9.png

突出显示的语句存储了第一个日期。

任何建议都将不胜感激,谢谢!

1 个答案:

答案 0 :(得分:1)

尝试复制类似的HTML结构(事实上其中2个,刷新后的一个)。这是一个快速解决方案,您可以在刷新后比较HTML表。

这里的关键是将表数据组织成Map<String, List<String>>类似的数据结构。

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;


public class CheckTables {

public WebDriver driver;


public static void main(String[] args) throws Exception {


    CheckTables objTest = new CheckTables();
    objTest.runTest();

}

public void runTest(){

    driver = new FirefoxDriver();

    driver.navigate().to("file:///D:/00_FX_WorkSpace/X_Hour/RoadTest_1.html");
    Map<String, List<String>> objTable_1 = readTable();
    System.out.println("TABLE:1" + objTable_1);

    //event to refresh the table
    driver.navigate().to("file:///D:/00_FX_WorkSpace/X_Hour/RoadTest_2.html");
    Map<String, List<String>> objTable_2 = readTable();
    System.out.println("TABLE:2" + objTable_2);

    compareTables(objTable_1, objTable_2);

}

public Map<String, List<String>> readTable(){

    Map<String, List<String>> objTable = new HashMap<>();

    List<WebElement> objRows = driver.findElements(By.cssSelector("tr#data"));
    for(int iCount=0; iCount<objRows.size(); iCount++){
        List<WebElement> objCol = objRows.get(iCount).findElements(By.cssSelector("td.tableTxt"));
        List<String> columns = new ArrayList<>();
        for(int col=0; col<objCol.size(); col++){
            columns.add(objCol.get(col).getText());
        }
        objTable.put(String.valueOf(iCount), columns);
    }

    return objTable;
}

public void compareTables(Map<String, List<String>> objTable1, Map<String, List<String>> objTable2){


    for(int count=0; count<objTable1.size(); count++){

        List<String> objList1 = objTable1.get(String.valueOf(count));
        System.out.println(objList1);
        List<String> objList2 = objTable2.get(String.valueOf(count));
        System.out.println(objList2);

        if(objList1.containsAll(objList2)){
            System.out.println("Row [" + count + "] is SAME");
        }
        else{
            //notify
            System.out.println("Row [" + count + "] has CHANGED");
        }
    }
}
}

以下是RoadTest_1.html和RoadTest_2.html的HTML代码段 - https://gist.github.com/anonymous/43c3b1f44817c69bd03d/