selenium网页截图和截图定位
Posted andy9468
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium网页截图和截图定位相关的知识,希望对你有一定的参考价值。
from selenium import webdriver import time from PIL import Image driver = webdriver.Chrome() driver.get(‘https://www.baidu.com/‘) time.sleep(3) # 演示一:全网页截图 # driver.save_screenshot(‘screenshot.png‘) # driver.quit() # 演示二:定位区块截图 driver.save_screenshot(r‘photo.png‘) # 一次截图:形成全图 baidu = driver.find_element_by_id(‘su‘) # 截图按钮百度一下 # baidu = driver.find_element_by_xpath("//div[@id=‘lg‘]/img[@class=‘index-logo-src‘]") #截图百度logo图片 # print(baidu) left = baidu.location[‘x‘] # 区块截图左上角在网页中的x坐标 top = baidu.location[‘y‘] # 区块截图左上角在网页中的y坐标 right = left + baidu.size[‘width‘] # 区块截图右下角在网页中的x坐标 bottom = top + baidu.size[‘height‘] # 区块截图右下角在网页中的y坐标 # print({"left": left, "top": top, "right": right, "bottom ": bottom}) # print("baidu.size[‘width‘]:%s" % baidu.size[‘width‘]) # print("baidu.size[‘height‘]:%s" % baidu.size[‘height‘]) picture = Image.open(r‘photo.png‘) picture = picture.crop((left, top, right, bottom)) # 二次截图:形成区块截图 picture.save(r‘photo2.png‘) driver.quit()
以上是关于selenium网页截图和截图定位的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 selenium webdriver 3.0.0-beta3 捕获完整的网页截图