Python+Selenium练习篇之6-利用class name定位元素
Posted BlackTest
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium练习篇之6-利用class name定位元素相关的知识,希望对你有一定的参考价值。
有时候,我们在用firepath(不会的请点这里)查看元素的XPath信息,发现没有可以用来定位的id信息,这个时候我们就需要考虑用其他的可用的来定位元素。本文介绍如何通过元素节点中class name的值来定位页面元素。还是以百度首页,搜索输入框定位举例:
XPath截图
相关脚本代码如下:
# coding=utf-8
from selenium import webdriver
driver = webdriver.Chrome()
driver.maximize_window()
driver.implicitly_wait(6)
driver.get("https://www.baidu.com")
try:
driver.find_element_by_class_name("s_ipt")
print (‘test pass: element found by class name‘)
except Exception as e:
print ("Exception found", format(e))
driver.quit()
意见:很多情况下,class利用要比id多,如果class中出现了太长的字符,和可变化的数字,那么请回到用XPath定位方法。
以上是关于Python+Selenium练习篇之6-利用class name定位元素的主要内容,如果未能解决你的问题,请参考以下文章
Python+Selenium练习篇之4-利用link text定位元素
Python+Selenium练习篇之3-利用tag name定位元素
Python+Selenium练习篇之5-利用partial link text定位元素