带有浏览器顶部的python屏幕截图

时间:2019-03-12 19:39:52

标签: python python-3.x screenshot

我正在尝试从多个URL制作屏幕截图。我的代码工作正常,但结果得到了活动窗口的图像。但是我需要完整的屏幕截图以及浏览器(URL)顶部

file = open('links.txt', 'r', encoding="ISO-8859-1")
urls = file.readlines()

for i, url in enumerate(urls, start=1):
try:
    browser = webdriver.Chrome(r'C:\webdrivers\chromedriver.exe')
    browser.get(url)

browser.save_screenshot(r'C:path\%03d.png' % i)
    browser.quit()
except Exception as err:
    browser.quit()
    break

我需要这个: enter image description here 我有这个: enter image description here

0 个答案:

没有答案