python selenium 点击第n个元素

标签 python linux selenium

下面是经过检查的代码,当鼠标悬停在图片上方时,基本上我想要点击图片....

<ul id="product-list">

    <li class="product one-col new">
        <ul>
            <li class="image" title="sample image">
                <a href="#product/1d77e790-f74a-3859-97db-c513cbece39c">
                    <img width="" height="" alt="" src="/content/images/1.jpg"></img>
                    <span class="new"> … </span>
                    <span class="hover"></span>
                </a>
                <p class="retailer"> … </p>
                <p class="brand"></p>
            </li>
            <li class="price"> … </li>
            <li class="name" title="sample image"> … </li>
            <li class="first-seen"> … </li>
        </ul>
    </li>
    <li class="product one-col new"> … </li>
    <li class="product one-col new"> … </li>
    <li class="product one-col new"> … </li>

我正在使用 python selenium,并尝试了以下方法来单击跨度(悬停)链接

browser.find_element_by_css_selector("ul#product-list > :first-child > ul > li.image > a > span.hover ").click

但是这不起作用...有什么想法吗?

更新:

browser.find_element_by_css_selector("ul#product-list > :first-child > ul > li.image > a > span.hover ").click()


 File "/usr/lib/python2.7/site-packages/selenium-2.35.0-py2.7.egg/selenium/webdriver/remote/errorhandler.py", line 164, in check_response
    raise exception_class(message, screen, stacktrace)
ElementNotVisibleException: Message: u'Element is not currently visible and so may not be interacted with' ; Stacktrace: 
    at fxdriver.preconditions.visible (file:///tmp/tmp6Pgi9F/extensions/fxdriver@googlecode.com/components/command_processor.js:8231)
    at DelayedCommand.prototype.checkPreconditions_ (file:///tmp/tmp6Pgi9F/extensions/fxdriver@googlecode.com/components/command_processor.js:10823)
    at DelayedCommand.prototype.executeInternal_/h (file:///tmp/tmp6Pgi9F/extensions/fxdriver@googlecode.com/components/command_processor.js:10840)
    at DelayedCommand.prototype.executeInternal_ (file:///tmp/tmp6Pgi9F/extensions/fxdriver@googlecode.com/components/command_processor.js:10845)
    at DelayedCommand.prototype.execute/< (file:///tmp/tmp6Pgi9F/extensions/fxdriver@googlecode.com/components/command_processor.js:10787) 

更新:

这也行不通...

browser.find_element_by_css_selector("ul#product-list > :first-child > ul > li.image > a ").click()

更新:

还尝试了 actionchains ,鼠标点击..仍然没有运气..

element = browser.find_element_by_css_selector("ul#product-list > :first-child > ul > li.image")
    hov = ActionChains(browser).move_to_element(element)
    hov.click()

已解决: 终于成功了...

element_to_hover_over = driver.find_element_by_css_selector("ul#product-list > :first-child ")
hover = ActionChains(driver).move_to_element(element_to_hover_over)
hover.perform()
if "" == driver.find_element_by_css_selector("span.hover").text:
    driver.find_element_by_css_selector("span.hover").click()

最佳答案

您的代码缺少 ()。如果没有 (),则不会调用 click 方法。

browser.find_element_by_css_selector("ul...span.hover ").click()
#                                                             ^^

element = browser.find_element_by_css_selector("ul#product-list > :first-child > ul > li.image > a > span.hover ")
browser.execute_script("arguments[0].innerText = 'asdf';", element)
element.click()

关于python selenium 点击第n个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19345068/

相关文章:

python - 使用一个已经打开的网页(带 Selenium )到 beautifulsoup?

selenium - 获取以下代码的 "element not interactable"

python - plotly :如何从具有长格式或宽格式的 Pandas 数据框中绘制线图?

python - 在 Windows 上安装 P4Python 时出错

python - Flask 应用程序日志文件不是在 Apache 部署下编写的

android - 适用于 Android 开发的轻型 Linux 发行版

python - Scipy:对数正态拟合

c++ - Linux (Ubuntu 18) 上的按键模拟问题

linux - 控制M具体工作状态到excel

java - Selenium Webdriver "Expectedconditions.not"未按预期工作