美文网首页
element-ui 或者 antd 远程搜索的元素定位输入,"

element-ui 或者 antd 远程搜索的元素定位输入,"

作者: 夏树的宝马 | 来源:发表于2019-07-19 16:05 被阅读0次

今天,测试中发现,有的元素定位直接send_keys,提示“cannot focus element”


cannot focus element 元素html

具体原因就不科普了(抱歉,我也不知道),直接说解决方法
由于我们需要直接模拟用户的点击然后输入

from selenium import webdriver
from selenium.webdriver import ActionChains
dr=webdriver.Chrome()
# 就是这个垃圾玩意儿
ActionChains(dr).click(dr.find_element_by_id("phone")).send_keys("1573626").perform()
测试成功样例

相关文章

网友评论

      本文标题:element-ui 或者 antd 远程搜索的元素定位输入,"

      本文链接:https://www.haomeiwen.com/subject/fwkslctx.html