作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不确定为什么 .select_by_visible_text()
无法选择元素?
以本站为例:https://www-01.ibm.com/products/hardware/configurator/americas/bhui/launchNI.wss
driver.get("https://www-01.ibm.com/products/hardware/configurator/americas/bhui/launchNI.wss")
driver.find_element_by_id("modelnumber").send_keys('7383AC1')
driver.find_element_by_name("submit").click()
FC='A1G7'
option_el=find_element_by_xpath("//option[contains(text(),'%s')]" %FC)
select_el=option_el.find_element_by_xpath("..")
Select(select_el).select_by_visible_text(FC)
最佳答案
driver.get("https://www-01.ibm.com/products/hardware/configurator/americas/bhui/launchNI.wss")
driver.find_element_by_id("modelnumber").send_keys('7383AC1')
driver.find_element_by_name("submit").click()
FC='A1G7'
option_el=find_element_by_xpath("//option[contains(text(),'%s')]" %FC)
option_el.click()
take click() instead of select
关于python - `.select_by_visible_text()` 选择元素失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18201399/
我不确定为什么 .select_by_visible_text() 无法选择元素? 以本站为例:https://www-01.ibm.com/products/hardware/configurato
我正在尝试以编程方式在网站中选择一种货币:http://www.asos.com/asos/asos-skinny-chinos-in-dark-khaki/prd/5542109 但是它给我带来了一
我正在从 Selenium Python 的下拉字段中选择一个值。我收到错误: AttributeError: 'WebElement' object has no attribute 'select
我是一名优秀的程序员,十分优秀!