` 如何编写代码以在python中打印工具提示消息?
我使用以下代码将指针移动到网页上的元素:
element = driver.find_element_by_css_selector("locator")
webdriver.ActionChains(driver).move_to_element(element).perform()
time.sleep(3)
此外,我们的开发人员对该页面上的所有工具提示消息使用相同的类,因此我不知道如何打印该特定工具提示消息。
HTML code:
<div class="d3-tip n" style="position: absolute; opacity: 0; pointer-events: none; top: 1108px; left: 116px;"><div><strong>Table Name:</strong> <span style="color:#1F77B4">lineitem</span></div><div><strong>Number of Queries:</strong> <span style="color:#1F77B4">13</span></div></div>
我想打印&#34; lineitem&#34;和&#34; 13&#34;来自上面的div标签
但正如我所提到的,这是另一个具有相同类的div标签,它具有不同的工具提示消息:
<div class="d3-tip n" style="position: absolute; opacity: 0; pointer-events: none; top: 469px; left: -180.23684692382813px;">select s_suppkey, s_name, s_address, s_phone, total_revenue from supplier s join revenue r on s.s_suppkey = r.supplier_no join (select max(total_revenue) as m from revenue) mr on r.total_revenue = mr.m order by s_suppkey </div>
答案 0 :(得分:1)
根据您提供的信息,您可以通过内部文字获得所需的div
。
例如,您可以使用xpath检查Table Name:
文本:
element = driver.find_element_by_xpath("//div[./div/strong, 'Table Name:']")