python自动化测试——截图(截取页面特定元素)


from PIL import Image
from selenium import webdriver
from selenium.webdriver.common.by import By

driver = webdriver.Chrome()
driver.get("https://www.***.cn")

filename = "image.png"
#截屏
driver.save_screenshot(filename)

#需要截取的元素定位
element = driver.find_element(By.ID, "***")
#获取元素上下左右的位置
left = element.location['x']
top = element.location['y']
right = element.location['x'] + element.size['width']
bottom = element.location['y'] + element.size['height']

#打开刚才的截图
im = Image.open(filename)
#截取对应位置
im = im.crop((left, top, right, bottom))
#保存覆盖原有截图
im.save(filename)

driver.quit()

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM