我对 Selenium 和网络抓取完全陌生,现在我在验证码方面遇到了麻烦。
我正在尝试执行此链接中评论的程序:
但进展并不顺利。
第一个问题
我的第一个问题是关于 xpath 选择器的。首先,我尝试过这段代码:
from selenium import webdriver
import urllib.request
driver = webdriver.Chrome()
driver.get("http://sistemas.cvm.gov.br/?fundosreg")
# Change frame.
driver.switch_to.frame("Main")
# Download image/captcha.
img = driver.find_element_by_xpath(".//*img[2]")
src = img.get_attribute('src')
urllib.request.urlretrieve(src, "captcha.jpeg")
基本上,我只是更改了链接。但不知道xpath写得是否正确,又该如何写。在“”内使用
[2]
听起来不错,并且在我提到的链接中以这种方式使用,但是当我尝试在 scrapy shell 会话中的 response.xpath 中复制它时,它不起作用:response.xpath(".//img[2]")
。必须是这样:response.xpath(".//img")[2]
我的链接中的验证码很难捕获,因为相应的 img 标签没有任何 id 或类或其他任何内容。另外,它是.asp 格式,我不知道我能做什么。
第二个问题 然后,我尝试了这段代码,它也出现在其他类似的搜索中
from PIL import Image
from selenium import webdriver
def get_captcha(driver, element, path):
# now that we have the preliminary stuff out of the way time to get that image :D
location = element.location
size = element.size
# saves screenshot of entire page
driver.save_screenshot(path)
# uses PIL library to open image in memory
image = Image.open(path)
left = location['x']
top = location['y'] + 140
right = location['x'] + size['width']
bottom = location['y'] + size['height'] + 140
image = image.crop((left, top, right, bottom)) # defines crop points
image.save(path, 'png') # saves new cropped image
driver = webdriver.Chrome()
driver.get("http://preco.anp.gov.br/include/Resumo_Por_Estado_Index.asp")
# change frame
driver.switch_to.frame("Main")
# download image/captcha
#img = driver.find_element_by_xpath(".//*[@id='trRandom3']/td[2]/img")
img = driver.find_element_by_xpath(".//*img[2]")
get_captcha(driver, img, "captcha.png")
我再次遇到 xpath 问题,但还有另一个问题:
Traceback (most recent call last):
File "seletest2.py", line 27, in <module>
driver.switch_to.frame("Main")
File "/home/seiji/crawlers_env/lib/python3.6/site-packages/selenium/webdriver/remote/switch_to.py", line 87, in frame
raise NoSuchFrameException(frame_reference)
selenium.common.exceptions.NoSuchFrameException: Message: Main
问题出在这一行:
driver.switch_to.frame("Main")
是什么意思?
谢谢!
使用
WebDriverWait
等待元素,使用.frame_to_be_available_and_switch_to_it
方法切换iframe
尝试以下代码:
driver.get("http://sistemas.cvm.gov.br/?fundosreg")
WebDriverWait(driver, 20).until(EC.frame_to_be_available_and_switch_to_it((By.NAME, 'Main')))
img = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.CSS_SELECTOR, '#Table1 img')))
src = img.get_attribute('src')
urllib.request.urlretrieve(src, "captcha.jpeg")
您需要以下导入:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
但是您的另一个网址是:http://preco.anp.gov.br/include/Resumo_Por_Estado_Index.asp,验证码元素不在
iframe
中。这是选择器:
By.CSS_SELECTOR : table img
请用上面的代码来实现。