2016-03-04 16 views
0

问题 下面的代码可以让我要么依靠,如果我选择了“日”打印列标题或打印网页表格数据到一个CSV文件或'td'标签,但不能同时使用。如何打印沿侧表数据的列标题由网络与webdriver的出类拔萃

我的问题 如何在我的CSV输出中同时打印到csv'th'和'td'文本?

代码 我已经试过2个版本的我的代码,但结果是连接same.Both版本。

代码版本1

public class WebToCSV { 

static WebDriver driver = new FirefoxDriver(); 

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

     //driver.navigate().to("http://goo.gl/El1PIV"); 
     driver.navigate().to("http://www.bloomberg.com/markets/stocks/futures"); 
     driver.manage().window().maximize(); 
     driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); 

     WebElement table = driver.findElement(By.cssSelector 
       ("div[class='data-tables first']")); 

     List<WebElement> irow = table.findElements 
       (By.cssSelector("div[class='data-tables first'] tr")); 
     System.out.println("No. of rows in the table are: " + irow.size()); 

     // Create excel workbook and sheet. 
     FileOutputStream fos = new FileOutputStream 
       ("/Users/HARSHENDU/Desktop/Selenium_Practice/Stats.csv"); 

     XSSFWorkbook wb = new XSSFWorkbook(); 
     XSSFSheet ws = wb.createSheet("WriteToXL"); 

     for(int r=0; r<irow.size(); r++) { 
      WebElement webRow = irow.get(r); 
      System.out.println(webRow.getText()); 
      XSSFRow row = ws.createRow(r); 
      List<WebElement> allCells = webRow.findElements(By.tagName("td")); 

      for(int c=0; c<allCells.size(); c++) { 
       WebElement webCell = allCells.get(c); 
       String text = webCell.getText(); 

       XSSFCell excelCell = row.createCell(c); 
       excelCell.setCellValue(text); 
      } 

      System.out.println(""); 
     } 

     fos.flush(); 
     wb.write(fos); 
     fos.close(); 

     end(); 

} 
    public static void end() { 
     driver.close(); 
     driver.quit(); 
    } 

}

代码版本2 此版本具有2套for循环,第一个打印列标题中CSV和第二个到打印来自webtable的所有数据。

public class StatsToxL { 

static WebDriver driver = new FirefoxDriver(); 

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

    //driver.navigate().to("http://goo.gl/El1PIV"); 
    driver.navigate().to("http://www.bloomberg.com/markets/stocks/futures"); 
    driver.manage().window().maximize(); 
    driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); 

    WebElement table = driver.findElement(By.cssSelector 
      ("div[class='data-tables first']")); 

    // Get webtable header column row. 
    List<WebElement> irow2 = table.findElements 
      (By.cssSelector("div[class='data-tables first'] thead tr ")); 
    System.out.println("No. of rows in the header are: " + irow2.size()); 

    // Get all webtable rows 
    List<WebElement> irow = table.findElements 
      (By.cssSelector("div[class='data-tables first'] tbody tr")); 
    int iRowCount = irow.size(); 
    System.out.println("No. of rows in the table are: " + iRowCount); 

    // Create excel workbook and sheet. 
    FileOutputStream fos = new FileOutputStream 
      ("/Users/HARSHENDU/Desktop/Selenium_Practice/Stats.csv"); 

    XSSFWorkbook wb = new XSSFWorkbook(); 
    XSSFSheet ws = wb.createSheet("WriteToXL"); 

    // Iterate over webtable header row and header cells. 
    for(int r2=0; r2<irow2.size(); r2++) { 
    WebElement webRow2 = irow2.get(r2); 
     System.out.println(webRow2.getText()); 
     XSSFRow row2 = ws.createRow(r2); 

     List<WebElement> allCells2 = webRow2.findElements(By.tagName("th")); 

     for(int c2=0; c2<allCells2.size(); c2++) { 
      WebElement webCell = allCells2.get(c2); 
      String text2 = webCell.getText(); 
      XSSFCell excelCell2 = row2.createCell(c2); 
      excelCell2.setCellValue(text2); 

     } 
     System.out.println(""); 
     fos.flush(); 
     wb.write(fos); 
    } 

    // Iterate over webtable rows and cells. 
    for(int r=0; r<iRowCount; r++) { 
     WebElement webRow = irow.get(r); 
     System.out.println(webRow.getText()); 
     XSSFRow row = ws.createRow(r); 
     List<WebElement> allCells = webRow.findElements(By.tagName("td")); 

     for(int c=0; c<allCells.size(); c++) { 
      WebElement webCell = allCells.get(c); 
      String text = webCell.getText(); 

      XSSFCell excelCell = row.createCell(c); 
      excelCell.setCellValue(text); 
     } 

     System.out.println(""); 
    } 

    fos.flush(); 
    wb.write(fos); 
    fos.close(); 

    end(); 

} 
public static void end() { 
    driver.close(); 
    driver.quit(); 
} 

} 
+1

如果你正在写只是一个CSV文件,然后使用Apache的POI做它是一个巨大的** **矫枉过正!这只是一个纯文本文件。 – SiKing

+0

感谢您的建议,我最初选择poi是因为我试图在xlsx文件中获取输出,但是每次运行脚本时都不会打开该文件。 研究表示poi行为就像xlsx,而应该使用csv。 根据您的观察,我会尝试使用缓冲式阅读器来做到这一点。我认为这就是你的意思。非常感谢您的帮助。 – H1b1

回答

2

变化

webRow.findElements(By.tagName("td")) 

webRow.findElements(By.xpath("//td | //th")) 
+1

谢谢非常非常喜欢魅力。 – H1b1