Python,使用PhantomJS的多个屏幕截图

时间:2017-07-11 14:11:54

标签: python

预计有多个截图,但我只获得第一个截图。 这是我试过的代码

{{1}}

1 个答案:

答案 0 :(得分:0)

我注意到的第一件事是stackoverflow的地址是错误的。

尝试这样的事情:

driver = webdriver.PhantomJS('C:\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe')
for client_url in client_urls:
    driver.get(client_url)
    driver.get_screenshot_as_file('C:\\Users\\xyz\\output\\'+client_url+'.png')
driver.quit()

如果您想将图像合并为一张图像,我也会查看PIL。