获取“警告:Augmenter应该被应用于@Augmentable类的实例或以前的增强实例”

下面的函数将csv文件转换为Excel工作正常,直到最近我得到一个警告消息。

警告2016年2月11日上午08时52分00秒org.openqa.selenium.remote.Augmenter extractRemoteWebDriver警告:Augmenter应该应用于@Augmentable类的实例或以前增强的实例2016年2月11日8:52:00组织.openqa.selenium.remote.Augmenter extractRemoteWebDriver警告:Augmenter应该被应用于@Augmentable类的实例或以前的扩展实例

而我的自动化testing用例失败,将csv转换为excel。

我曾尝试通过将Sys out语句进行debugging。 在尝试块1打印,但下一个系统输出"csvFileAddress in TRY block 2"不打印,所以我相信有这个线路有问题。

 XSSFWorkbook workBook = new XSSFWorkbook(); XSSFSheet sheet = workBook.createSheet("sheet1"); public void csvToXLSX(String csvFileAddress, String xlsxFileAddress) { try { System.out.println("In TRY block 1"); Thread.sleep(1000); XSSFWorkbook workBook = new XSSFWorkbook(); XSSFSheet sheet = workBook.createSheet("sheet1"); System.out.println("csvFileAddress in TRY block 2"); String currentLine=null; int RowNum=0; BufferedReader br = new BufferedReader(new FileReader(csvFileAddress)); System.out.println("in TRY block 3"); while ((currentLine = br.readLine()) != null) { System.out.println("In while loop"); String str[] = currentLine.split(","); XSSFRow currentRow=sheet.createRow(RowNum); for(int i=0;i<str.length;i++) currentRow.createCell(i).setCellValue(str[i]); RowNum++; } FileOutputStream fileOutputStream = new FileOutputStream(xlsxFileAddress); workBook.write(fileOutputStream); fileOutputStream.close(); report.addReportStep("Converting CSV to Excel" , "Conversion successfull", StepResult.PASS); } catch (Exception ex) { report.addReportStep("Converting CSV to Excel" , "Conversion unsuccessfull", StepResult.FAIL); System.out.println(ex.getMessage()+"Exception in try"); } } 

请提出什么是错的