selenium2 根据name定位
2021-07-02 17:05 更新
如果你知道元素的name
属性,那么就用这个定位吧。在name
定位里,会返回第一个name
属性匹配的元素,如果没有元素匹配,会抛出NoSuchElementException
异常。
举例我们再来看一个页面:
<html>
<body>
<form id="loginForm">
<input name="username" type="text" />
<input name="password" type="password" />
<input name="continue" type="submit" value="Login" />
<input name="continue" type="button" value="Clear" />
</form>
</body>
<html>
username
和 password
元素 可以这样定位:
username = driver.find_element_by_name('username')
password = driver.find_element_by_name('password')
下面这个操作会返回Login
按钮,因为它在Clear
按钮的前面:
continue = driver.find_element_by_name('continue')
以上内容是否对您有帮助:
更多建议: