0

我需要能够截取网页的屏幕截图并将其保存到硬盘驱动器上的文件夹中。为此,我尝试使用 captureEntirePageScreenshot,设置我要用作目标的文件夹。

    <tr>
<td>captureEntirePageScreenshot</td>
<td>C:\Users\.....\Desktop\test</td>
<td></td>
    </tr>

当我告诉它执行时出现以下错误。注意:selenium 上的基本 URL 和网页匹配。

[error] Unexpected Exception: [Exception... "Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED) [nsIFileOutputStream.init]" nsresult: "0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)" location: "JS frame :: chrome://selenium-ide/content/selenium-core/scripts/selenium-api.js :: <TOP_LEVEL> :: line 2986" data: no]. QueryInterface -> function QueryInterface() { [native code] }, message -> Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED) [nsIFileOutputStream.init], result -> 2152857621, name -> NS_ERROR_FILE_ACCESS_DENIED, filename -> chrome://selenium-ide/content/selenium-core/scripts/selenium-api.js, lineNumber -> 2986, columnNumber -> 0, location -> JS frame :: chrome://selenium-ide/content/selenium-core/scripts/selenium-api.js :: <TOP_LEVEL> :: line 2986, inner -> null, data -> null, initialize -> function initialize() { [native code] }

如果有人可以帮助我理解并解决它,我将不胜感激。

4

3 回答 3

0

嗯,我使用的是 Selenium 2.2.0,但我使用的是 Firefox 17.0.1,下面的命令对我有用。

captureEntirePageScreenshot | c:\selenium\test.jpg | 

请注意,它可以使用或不使用文件扩展名。您可能需要查看 seleniumhq.org 以查看 Firefox 22 中该命令是否存在报告问题。

克伦达图

于 2013-08-05T19:00:14.653 回答
0

试试这个,让我知道它是否适合你,因为它适合我

       <tr>
<td>open</td>
<td>http://docs.seleniumhq.org/download/</td>
<td></td>
      </tr>
     <tr>
<td>captureEntirePageScreenshot</td>
<td>d:/title.png</td>
<td></td>
    </tr>
于 2013-08-05T16:17:53.920 回答
0

尝试将文件路径中从 \ 到 \\ 的反斜杠加倍。

<tr>
<td>captureEntirePageScreenshot</td>
<td>C:\\Users\\.....\\Desktop\\test</td>
<td></td>
</tr>

希望有帮助。

于 2013-08-08T22:51:56.527 回答