点击上方“Python全家桶”,“星标”或"置顶"
关键时刻,第一时间送达
[h1]来源:http://www.cnblogs.com/xiao-[/h1][h1]apple36/p/8878960.html[/h1][h1][/h1]
以上图片是最典型的要属于极验滑动认证了,极验官网:http://www.geetest.com/。
现在极验验证码已经更新到了 3.0 版本,截至 2017 年 7 月全球已有十六万家企业正在使用极验,每天服务响应超过四亿次,广泛应用于直播视频、金融服务、电子商务、游戏娱乐、政府企业等各大类型网站
对于这类验证,如果我们直接模拟表单请求,繁琐的认证参数与认证流程会让你蛋碎一地,我们可以用selenium驱动浏览器来解决这个问题,大致分为以下几个步骤
- 1、输入用户名,密码
- 2、点击按钮验证,弹出没有缺口的图
- 3、获得没有缺口的图片
- 4、点击滑动按钮,弹出有缺口的图
- 5、获得有缺口的图片
- 6、对比两张图片,找出缺口,即滑动的位移
- 7、按照人的行为行为习惯,把总位移切成一段段小的位移
- 8、按照位移移动
- 9、完成登录
[h1]实现[/h1][h2]位移移动需要的基础知识[/h2]位移移动相当于匀变速直线运动,类似于小汽车从起点开始运行到终点的过程(首先为匀加速,然后再匀减速)。
其中a为加速度,且为恒量(即单位时间内的加速度是不变的),t为时间
[h2]位移移动的代码实现[/h2]
- # 单位时间为0.2s来统计轨迹,轨迹即0.2内的位移
复制代码- # 位移/轨迹列表,列表内的一个元素代表0.2s的位移
复制代码
- distance += 10 # 先滑过一点,最后再反着滑动回来
复制代码
- while current < distance:
复制代码- # 加速度越小,单位时间的位移越小,模拟的轨迹就越多越详细
复制代码
[h2]对比两张图片,找出缺口[/h2]- def get_distance(image1,image2):
复制代码- # print('size', image1.size)
复制代码
- for i in range(0,image1.size[0]): # 260
复制代码- for j in range(0,image1.size[1]): # 160
复制代码- pixel1 = image1.getpixel((i,j))
复制代码- pixel2 = image2.getpixel((i,j))
复制代码- res_R = abs(pixel1[0]-pixel2[0]) # 计算RGB差
复制代码- res_G = abs(pixel1[1] - pixel2[1]) # 计算RGB差
复制代码- res_B = abs(pixel1[2] - pixel2[2]) # 计算RGB差
复制代码- if res_R > threshold and res_G > threshold and res_B > threshold:
复制代码 [h2]获得图片[/h2]- def merge_image(image_file,location_list):
复制代码- im = Image.open(image_file)
复制代码- new_im = Image.new('RGB',(260,116))
复制代码- for location in location_list:
复制代码- if location['y'] == -58: # 上半边
复制代码- im_list_upper.append(im.crop((abs(location['x']),58,abs(location['x'])+10,116)))
复制代码- if location['y'] == 0: # 下半边
复制代码- im_list_down.append(im.crop((abs(location['x']),0,abs(location['x'])+10,58)))
复制代码
- new_im.paste(im,(x_offset,0)) # 把小图片放到 新的空白图片上
复制代码
- new_im.paste(im,(x_offset,58))
复制代码
- def get_image(driver,div_path):
复制代码- background_images = driver.find_elements_by_xpath(div_path)
复制代码- for background_image in background_images:
复制代码- result = re.findall('background-image: url\("(.*?)"\); background-position: (.*?)px (.*?)px;',background_image.get_attribute('style'))
复制代码- location['x'] = int(result[0][1])
复制代码- location['y'] = int(result[0][2])
复制代码
- location_list.append(location)
复制代码
- print('==================================')
复制代码- image_url = image_url.replace('webp','jpg')
复制代码- # '替换url http://static.geetest.com/pictures/gt/579066de6/579066de6.webp'
复制代码- image_result = requests.get(image_url).content
复制代码- # with open('1.jpg','wb') as f:
复制代码- image_file = BytesIO(image_result) # 是一张无序的图片
复制代码- image = merge_image(image_file,location_list)
复制代码
[h2]按照位移移动[/h2]- ActionChains(driver).click_and_hold(on_element=element).perform() # 点击鼠标左键,按住不放
复制代码- ActionChains(driver).move_by_offset(xoffset=track, yoffset=0).perform() # 鼠标移动到距离当前位置(x,y)
复制代码- if l threshold and res_G > threshold and res_B > threshold:
复制代码
- def main_check_code(driver, element):
复制代码- image1 = get_image(driver, '//div[@class="gt_cut_bg gt_show"]/div')
复制代码- image2 = get_image(driver, '//div[@class="gt_cut_fullbg gt_show"]/div')
复制代码
- # 2 对比两张图片的所有RBG像素点,得到不一样像素点的x值,即要移动的距离
复制代码- l = get_distance(image1, image2)
复制代码- track_list = get_track(l)
复制代码- ActionChains(driver).click_and_hold(on_element=element).perform() # 点击鼠标左键,按住不放
复制代码- ActionChains(driver).move_by_offset(xoffset=track, yoffset=0).perform() # 鼠标移动到距离当前位置(x,y)
复制代码
- ActionChains(driver).move_by_offset(xoffset=-random.randint(2,5), yoffset=0).perform()
复制代码- ActionChains(driver).release(on_element=element).perform()
复制代码
- def main_check_slider(driver):
复制代码- driver.get('http://www.cnbaowen.net/api/geetest/')
复制代码- element = WebDriverWait(driver, 30, 0.5).until(EC.element_to_be_clickable((By.CLASS_NAME, 'gt_slider_knob')))
复制代码- except TimeoutException as e:
复制代码
- if __name__ == '__main__':
复制代码- driver = webdriver.Chrome()
复制代码- element = main_check_slider(driver)
复制代码- main_check_code(driver,element)
复制代码- success_element = (By.CSS_SELECTOR, '.gt_holder .gt_ajax_tip.gt_success')
复制代码- print('suc=',driver.find_element_by_css_selector('.gt_holder .gt_ajax_tip.gt_success'))
复制代码- success_images = WebDriverWait(driver, 20).until(EC.presence_of_element_located(success_element))
复制代码- except NoSuchElementException as e:
复制代码- print('too many attempt check code ')
复制代码 [h2]成功识别标志css[/h2]
往期精彩回顾
关注公众号,回复关键
字领取对应资源
请把我分享给你身边更多的人
喜欢的话给小编一个在看
|
|