webdriver保存验证码截图
Posted BeyondTechnology
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webdriver保存验证码截图相关的知识,希望对你有一定的参考价值。
element = wait.until ( EC.visibility_of_element_located((By.CSS_SELECTOR,‘.quc-main .quc-field-captcha img‘))) #等待验证码加载完毕
browser.save_screenshot(‘screenshot.png‘)
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(‘screenshot.png‘)
im = im.crop((left,top,right,bottom))
im.save(‘screenshot.png‘)
以上是关于webdriver保存验证码截图的主要内容,如果未能解决你的问题,请参考以下文章
Selenium+Python+Webdriver:保存截图到指定文件夹