美文网首页
python selenium 选择伪列表

python selenium 选择伪列表

作者: qizhen816 | 来源:发表于2020-09-04 15:12 被阅读0次

    有时候网页中的列表是使用js伪装的,暴露出的<select>标签直接下拉选择会出现错误:

    ElementNotInteractableException: Message: element not interactable: Element is not currently visible
    

    这时候找找附近有没有隐藏的列表 或者找对应的js代码


    image.png
    image.png

    发现这个<input>是隐藏列表,点击之后会出现<dd>的选项,因此可以模拟点击,触发加载列表:

    driver.find_element_by_xpath( "//input[@placeholder='请选择推荐银行']").click()
    driver.find_element_by_xpath( "//dd[@lay-value='1']").click()
    

    相关文章

      网友评论

          本文标题:python selenium 选择伪列表

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