如何通过python webdriver查找父元素?

python + selenium是否有任何方法可以找到父元素,兄弟元素或子元素,就像

driver.find_element_parent?

driver.find_element_next?

driver.find_element_previous

例如:

<tr>

<td>

<select>

<option value=0, selected='selected'> </option>

<option value=1, > </option>

<option value=2,> </option>

</select>

</td>

<td> 'abcd'

<input name='A'> </input>

<td>

<tr>

我已经尝试过如下操作,但是失败了:

input_el=driver.find_element_by_name('A')

td_p_input=find_element_by_xpath('ancestor::input')

如何 然后最终 ?

回答:

您可以使用..xpath 找到一个父元素:

input_el = driver.find_element_by_name('A')

td_p_input = input_el.find_element_by_xpath('..')


为获得选择的选项制作一个单独的xpath怎么样,像这样:

selected_option = driver.find_element_by_xpath('//option[@selected="selected"]')

以上是 如何通过python webdriver查找父元素? 的全部内容, 来源链接: utcz.com/qa/432836.html

回到顶部