python+selenium遇到鼠标悬停不成功可以使用js进行操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium遇到鼠标悬停不成功可以使用js进行操作相关的知识,希望对你有一定的参考价值。
问题:在定位这种悬停后出现下拉操作的时候,尝试了使用move_to_element的方法
# ele_logout = br.find_element_by_xpath(‘/html/body/div[1]/div[1]/div/ul/li[5]/div‘)
# ActionChains(br).move_to_element(ele_logout).perform()
不成功;╮(╯﹏╰)╭
好吧网上大神介绍用js的方法试一下
>>> btn = br.find_element_by_xpath(‘/html/body/div[1]/div[1]/div/ul/li[5]/div/ul/li[4]/a‘)
>>> br.execute_script(‘$(arguments[0]).click()‘,btn)
我的天,成功了( ⊙ o ⊙ )
js解释:
arguments对象,它是调用对象的一个特殊属性,用来引用Arguments对象。Arugments对象就像数组。
以上是关于python+selenium遇到鼠标悬停不成功可以使用js进行操作的主要内容,如果未能解决你的问题,请参考以下文章
python selenium 模拟鼠标悬停,为啥看不到效果
使用 Python 和 Selenium 将鼠标悬停在图形上