1
複数のスクリーンショットが予想されますが、最初は1つだけです。 は、ここで私はPython、PhantomJSを使用した複数のスクリーンショット
from selenium import webdriver
client_urls =
['https://www.facebook.com/','http://www.https://stackoverflow.com']
for client_url in client_urls:
driver = webdriver.PhantomJS('C:\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe')
driver.get(client_url)
print(client_url)
screen = client_urls
driver.get_screenshot_as_file('C:\\Users\\xyz\\output\\b.png')
driver.quit()'''
私はPILを試しますが、そのURLは誤って誤っている可能性があります –