Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个具有不同寻常元素的页面。其中一些是无法使用 xpath、链接文本或 id 定位器单击的按钮。
这是一个按钮的html。
<div class="goog-inline-block goog-custom-button-inner-box">Save & Go Back</div>
我应该如何在我的脚本中包含这些类型的按钮和对象?
您可以使用 CSS 选择器
driver.find_element_by_css_selector("div.goog-inline-block.goog-custom-button-inner-box").click()
我会说使用这个类,但它有一个复合类名,所以我认为这不会起作用。要求开发人员在按钮上放置一个 ID。