如何修复python硒中的“元素无法滚动到视图中”单选按钮

时间:2019-05-07 04:30:09

标签: python selenium

我正在通过单击“是”来创建单击单选按钮的测试

单选按钮代码:


<div role="group" class="btn-group btn-group-toggle">
 <label class="btn btn-primary">
 <input name=".product2" autocomplete="off" value="true" type="radio"> Yes </label>

我已经尝试过:

time.sleep(3)
driver.find_element_by_css_selector("input[name*='product2'] [value='true']").click();

但返回错误:

元素<input name=".product2" type="radio">无法滚动到视图中

我还可以使用其他选择器来单击“是”吗? 还是使用CSS选择器缺少详细信息?

我也尝试find_element_by xpath仍然得到相同的结果。

2 个答案:

答案 0 :(得分:0)

您可以尝试使用以下CSS选择器:

label.btn.btn-primary input  

如果您也可以使用WebDriverWait,那就太好了。

wait = WebDriverWait(driver, 10)

element = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, "label.btn.btn-primary input")))

element.click()  

方法2:

或者您也可以尝试使用ActionChains:

actions = ActionChains(driver)
wait = WebDriverWait(driver, 10)

element = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, "label.btn.btn-primary input")))
actions.move_to_element(element).perform()

element.click()

进口为:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC 
from selenium.webdriver.common.action_chains import ActionChains  

希望这会有所帮助

答案 1 :(得分:0)

@cruisepandey答案似乎是正确的,如果可以,则可以使用javascriptexecutor

element=driver.find_element_by_css_selector("input[name*='product2'] [value='true']") 
driver.execute_script("arguments[0].click();", element)