selenium2 根據(jù)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')


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號