selenium2 class定位
知道class
就使用这个定位,只返回匹配的第一个,无元素匹配,会抛出NoSuchElementException
异常。
实例:
<html>
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
定位p
元素:
content = driver.find_element_by_class_name('content')
知道class
就使用这个定位,只返回匹配的第一个,无元素匹配,会抛出NoSuchElementException
异常。
实例:
<html>
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
定位p
元素:
content = driver.find_element_by_class_name('content')