6-selenium-定位一组元素

Posted tarzen213

tags:

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

import time

from selenium import webdriver
‘‘‘
定位一组元素find_eleniums

获取元素属性    .get_attribute(‘name‘)
补充一下css选择器:
  id 表示为 #
  class 表示为 .
  dir.kw>a
‘‘‘ driver = webdriver.Chrome() driver.get(http://www.baidu.com) driver.find_element_by_css_selector("#kw").send_keys(测试面试) driver.find_element_by_css_selector("#su").click() time.sleep(2) a_list = driver.find_elements_by_css_selector("h3.t>a") print(a_list) for x in a_list: link = x.get_attribute(href) print(link)

 

以上是关于6-selenium-定位一组元素的主要内容,如果未能解决你的问题,请参考以下文章

基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)

基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)

基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)

基于python实现UI自动化6.selenium实现浏览器相关操作(最大化自定义宽高前进后退)

CSS代码片段

CSS代码片段