我遇到了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.
我们因为这些问题而陷入困境。请提出解决方案来解决这个问题。
答案 0 :(得分:0)
不幸的是,这是IE的工作原理。我想你在FF / Chrome上没有这个问题,对吗?
这与webdriver无关,而与浏览器本身无关。检查this是否有可能的解决方案。