通过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

I tried with

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

但实际上它并不查找正确的元素

我尝试了以下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)

尝试:

//h2[@class="force--h4"]

最新更新