#-*-coding:utf-8-*-
#导入webdriver模块
from selenium import webdriver
#导入time模块
import time
#打开谷歌浏览器
driver = webdriver.Chrome()
#打开网址
driver.get(‘https://www.baidu.com/?tn=39042058_27_oem_dg‘)
#固定等待2s
time.sleep(2)
#浏览器窗口最大化
driver.maximize_window()
time.sleep(2)
#定位一组元素
s = driver.find_elements_by_class_name(‘mnav‘)
for i in s:
print(i.get_attribute(‘href‘))
selenium定位一组元素操作
Posted zhengmengfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium定位一组元素操作相关的知识,希望对你有一定的参考价值。
以上是关于selenium定位一组元素操作的主要内容,如果未能解决你的问题,请参考以下文章
Selenium Xpath元素无法定位 NoSuchElementException: Message: no such element: Unable to locate element(代码片段
Selenium2+python自动化11-定位一组元素find_elements