码迷,mamicode.com
首页 > 其他好文 > 详细

selenium模块

时间:2019-10-03 23:55:18      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:xxx   install   api   ref   版本   name   执行   exec   href   

- 便捷获取网站中动态加载的数据

- 便捷实现模拟登录

什么是selenium?

  - 基于浏览器自动化的一个模块

使用:

  pip3 install selenium

  下载浏览器驱动程序 http://chromedriver.storage.googleapis.com/index.html (基于谷歌,对应版本)

  - 实例化浏览器对象

  技术图片

 

 

 技术图片

 

 

  - page_text = bro.page_source#页面源码数据

  - bro.quit() #浏览器关闭

  - bro.find系列....

  - xxx = bro.find...

     xxx.send_keys(‘xxxxx‘)

    xxx.click()

  - bro.execute_script(‘window.scrollTo(0,5000)‘) #滚轮滚动   document.body.scrollHeight #滚动一屏  #执行js代码

  - bro.back()回退

  - bro.forward()前进 

  - bro.save_screenshot(‘‘文件保存路径“) 当前页面截屏

  - 


selenium处理iframe

  如果定位的标签处于iframe标签中则必须通过如下操作:

    - bro.switch_to.frame(‘被定为的iframe标签id‘)

  拖拽动作: 通过动作链

    - from selenium.webdriver import ActionChains

     action = ActionChains(bro)

     action.click_and_hold(‘‘brofind的标签 ‘‘)

      for i in range(5):

        action.move_by_offset(像素(数字,水平),像素(数字,竖直放心)).perform() #perform表示立即执行

    action.release() #释放动作链


无可视化界面(无头浏览器)

  from selenium.webdriver.chrome.options import Options

  chrome_options = Options()

  chrome_options.add_argument(‘--headless‘)

  chrome_options.add_argument(‘--disable-gpu‘)

  browser = webdriver.Chrome(executable_path=path, chrome_options=chrome_options)

 


    规避selenium被检测到风险

  

  1. from selenium.webdriver import ChromeOptions
  2. option = ChromeOptions()
  3. option.add_experimental_option(‘excludeSwitches‘, [‘enable-automation‘])
  4. browser=webdriver.Chrome(executable_path=path,options=option)

 

验证码坐标:

  code_img_ele = bro.find....()

  location = code_img_ele.location#验证码左上角图标

  size = code_img_ele.size #验证码对应的长和宽

  rangle = (

    int(location[‘x‘]),int(location[‘y‘]),int(location[‘x‘]+size[‘width‘]),int(location[‘y‘]+size[‘height‘])

 #rangle为验证码区域  左上角图标, 右下角图标

 from PIL import Image

  i = Image.open(‘图片路径‘)

 frame = i.crop(rangle) #指定区域图片的裁剪

 code_img_name = ‘code.png‘

  frame.save(code_img_name)#保存

 

selenium模块

标签:xxx   install   api   ref   版本   name   执行   exec   href   

原文地址:https://www.cnblogs.com/Jnhnsnow/p/11620910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!