Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 CasperJS 脚本,我正在尝试运行并截屏,但它似乎只在运行时打开“about:blank”。
如果有人能告诉我哪里出错了,下面是我正在尝试使用的脚本的链接,
谢谢。
http://jsbin.com/ujuret/2/edit
如果我url从屏幕截图文件名中删除,您的代码对我有用。我更换了:
url
this.capture(savePath + "/"+ url + breakpoints[currentBreakpoint - 1][0] + ".png");
和:
this.capture(savePath + "/" + breakpoints[currentBreakpoint - 1][0] + ".png");
并获得了 3 个不同分辨率的文件。
url在将其用作文件名的一部分之前,您似乎需要正确转义。