当机器被锁定时,Webdriver Screenshot API不会截取屏幕截图

时间:2014-03-28 05:13:59

标签: java selenium-webdriver webdriver

我遇到了webdriver 2.3.x API的问题。

1.Webdriver is not able to capture screenshots on IE when machine is locked. 
code I am using for screenshot is: 

File scrFile = ((TakesScreenshot)wd).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(scrFile, new File(<URL>));

2.Even, APIs like mouseover (using actions), click(), SwitchTo() does not work if machine gets locked while execution is in progress.

我们因为这些问题而陷入困境。请提出解决方案来解决这个问题。

1 个答案:

答案 0 :(得分:0)

不幸的是,这是IE的工作原理。我想你在FF / Chrome上没有这个问题,对吗? 这与webdriver无关,而与浏览器本身无关。检查this是否有可能的解决方案。