首页 > 解决方案 > 通过 XPath 选择 h2 元素

问题描述

我需要通过 XPath 访问这个元素:

<section class="section">
  <div class="help-info">
    <div class="container">
      <div class="tile tile--bottom">
        <h2 class="force--h4">Sorry, xxx could not be found or reached (error code 404) </h2> ==$0

我试过了

wait.until(EC.visibility_of_element_located((By.XPATH, "//h2[text()='Sorry, xxx could not be found or reached (error code 404)']")))

但实际上它并没有看正确的元素。

标签: pythonselenium

解决方案


我尝试了以下方法CSS_SELECTOR

section.section div.container h2

有明确的等待,如:

h_ele = wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, "section.section div.container h2")))
print(h_ele.text)

推荐阅读