点击selenium python中css选择器的图像

时间:2014-06-19 09:04:08

标签: python selenium

我有以下代码。 我只需要为hidebutton2点击图片up.gif。 如何使用selenium -python实现这一目标 以下是css_selector

的源代码
    <IMG onclick=hidePackage() id=hideButton2 style="BORDER-TOP: #ff0000 1px solid; BORDER-RIGHT: #ff0000 1px solid; BORDER-BOTTOM: #ff0000 1px solid; BORDER-LEFT: #ff0000 1px solid; DISPLAY: block" src="../../scripts/jQueryFramework/plugins/jqGrid/themes/steel/images/up.gif">

1 个答案:

答案 0 :(得分:0)

与此元素交互的最简单方法是:

driver.find_element_by_id("hideButton2").click()

更新:

driver.find_element_by_css_selector("#hideButton2").click()