我有以下代码。 我只需要为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">
答案 0 :(得分:0)
与此元素交互的最简单方法是:
driver.find_element_by_id("hideButton2").click()
更新:
driver.find_element_by_css_selector("#hideButton2").click()