如何在python中使用Selenium Webdriver单击<div>按钮

时间:2018-08-07 15:49:23

标签: python-2.7 selenium-webdriver

我想在Python 2.7中使用Selenium Webdriver单击UI上显示为“添加新”的按钮,但是使用ID或类名时出现错误“无法找到元素”。

add_new_btn = driver.find_element_by_id("buttonAddEditEntryId")  
add_new_btn.click()
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: [id="buttonAddEditEntryId"]  

下面是html代码:

<div id="buttonAddEditEntryId" class="k-button" title="Add New Record">
                        <i style="font-size:14px; padding:5px" class="fa fa-plus-circle" aria-hidden="true">
                        </i>Add New
                    </div>

0 个答案:

没有答案