验证码
事件链
from selenium.webdriver.common.action_chains import ActionChains
这个就是遇到验证码了,验证码识别出来了,然后靠这个操作
例1
比如1-4个坐标的
web = Chrome() points_str_lst = result['pic_str'].split("|") for p in points_str_lst: p_temp = p.split(",") p_x = int(p_temp[0]) p_y = int(p_temp[1]) ActionChains(web).move_to_element_with_offset(verify_img, p_x, p_y).click().perform()
例2
ActionChains(web).drag_and_drop_by_offset(btn, xoffset=300, yoffset=0).perform()
他这里面很多的方法,这个具体需要看怎么操作