selenium常用操作

Posted suhfj-825

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium常用操作相关的知识,希望对你有一定的参考价值。

1、访问页面获得源码

  browser.get(url)

  browser.page_source

2、查找单个元素:返回一个标签

  find_element_by_id  ==》id选择器

  find_element_by_css... ==》css选择器

3、查找多个元素:返回一个元素列表

  find_elements_by_id....

  find_elements_by_css...

4、元素的交互操作:

  send_key()、click()

5、交互操作:拖拽

  switch_to.frame()  ==》切换到frame

6、执行js:

  browser.execute_script(‘js代码‘)

7、获取元素信息

  Tag = browser.find_ele....()

  7.1、获取属性值:

    attr_val = Tag.get_attribute(‘attr_name‘)

  7.2、获取文本值:

    text_val = Tag.text

  7.3、获取id、位置、标签名、大小

    Tag.id、Tag.location、Tag.tag_name、Tag.size

8、Frame:要先切换到Frame才能选择Frame中的元素

  switch_to.frame()

  switch_to.parent_frame()切换到当前的父Frame

9、等待

10、前进、后退:forward()、back()

11、cookies:get_cookies()、add_cookie、delete_all_cookies()

12、选项卡管理:

  执行js  “window.open()”

  switch_to_window(browser.window_handles[0]) ==》切换

13、异常处理:异常类型

14、参考网址:https://selenium-python.readthedocs.io/

    

以上是关于selenium常用操作的主要内容,如果未能解决你的问题,请参考以下文章

selenium中鼠标的常用操作

selenium+python的常用操作

python selenium系列常用操作类型及方法

Selenium2(java)selenium常用API 四

selenium常用操作之等待操作

Selenium常用API详解介绍