1

我正在尝试截取失败的测试用例的屏幕截图,但收到与自动化扩展相关的错误:

public static String captureScreenshot(WebDriver driver, String screenshotName)
{
try
{
    TakesScreenshot ts = (TakesScreenshot)driver;
    File source = ts.getScreenshotAs(OutputType.FILE);
    String userDirector = System.getProperty("user.dir");
    String resultFile = userDirector
            + "\\src\\main\\java\\utils\\screenshots\\"+screenshotName+".png";
    File destination = new File(resultFile);
    FileUtils.copyFile(source, destination);
    System.out.println("Screenshot Taken");
    return resultFile;

}
catch(Exception e)
{
    System.out.println("Exception while taking screenshot" + e.getMessage());
    return e.getMessage();

}   

这是我正在调用此方法的课程

    @AfterMethod (alwaysRun = true) 
public void tearDown(ITestResult result) throws InterruptedException, IOException{
    if (result.getStatus()==ITestResult.FAILURE){
      String screenshot_path=Screenshot.captureScreenshot(driver, result.getName());
      String image = logger.addScreenCapture(screenshot_path);
      logger.log(LogStatus.FAIL, "Test Script Failed and TestScript name is ", image);
      Thread.sleep(3000);

    }
      report.endTest(logger);
      report.flush(); 
    //else if ((result.getStatus()== ITestResult.SUCCESS)){
    // logger.log(LogStatus.PASS, "test case Pass1" + result.getName());
    //}
    //TestBase.updateResult(1, "result.getName()", "Pass", "I dont Know");

     driver.close();
}

运行此之后,我收到以下错误:

TestCases failed and TestScript is KeepCookiesCheckInvalidScenario
Exception while taking screenshotunknown error: cannot get automation 
extension


 from unknown error: page could not be found: chrome-


extension://aapnijgdinlhnhlmodcfapnahmbfebeb/_generated_background_page.html
 (Session info: chrome=60.0.3112.113)
 (Driver info: chromedriver=2.27.440174 
 (e97a722caafc2d3a8b807ee115bfb307f7d2cfd9),platform=Windows NT 10.0.14393 
  x86_64) (WARNING: The server did not provide any stacktrace information)
  Command duration or timeout: 10.20 seconds

我也试过不在这里关闭驱动程序,但它不起作用,请帮忙

4

1 回答 1

1

如果您使用的是 chrome,请尝试以下 chrome 属性代码:

System.setProperty("webdriver.chrome.driver", "C:\\Utility\\BrowserDrivers\\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("test-type");
options.addArguments("start-maximized");
options.addArguments("--enable-automation");
options.addArguments("test-type=browser");
options.addArguments("disable-infobars");
WebDriver driver = new ChromeDriver(options);

我希望您能够使用上面的代码解决您的问题。享受 !

于 2017-09-13T12:25:55.510 回答