[python] python +selenium 对指定元素的截图

[python] python +selenium 对指定元素的截图

基本思路:接网页图->对网页图进行二次截取,获取目标元素图

步骤示例(非完整代码)

  1. 对整个网页进行截图
filepath='temp.png'
webdriver.save_screenshot(filepath)
  1. 获取目标元素的位置
ele=webdriver.find_element_by_xpath(" //*[@id='content']/div/div[1]/")
top=ele.location['x']
left=ele.location['y']
right=top+ele.size['width']
bottom=left+ele.size['height']
  1. 对网页截图进行裁剪,获得目的图
pic=Image.open(filepath)
pic1=pic.crop((top,left,right,bottom))
pic1.save(filepath)

参考文章

你可能感兴趣的:(Python知识,python)