selenium-02iframe、验证码处理 Posted on 2019-04-15 | In 测试 , 自动化 , web自动化 Words count in article: 114 | Reading time ≈ 1 selenium提供了find_element_by_name、switch_to.frame、switch_to_default_content等方法 在使用中,登陆的时候存在对验证码的处理。其网站的验证码是比较简单的那种,将缺块划到图片的固定位置。解决方法:识别滑块的轮廓和目标点坐标,滑动遇到的问题:selenium的滑动不能滑动滑块,因为是鼠标按下,然后slide,所以最终是通过Windows自动化api进行滑动。 ------------- The End -------------