I would need to access this element via 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)']")))
But actually it does not look at the right element.
I tried the below CSS_SELECTOR :
section.section div.container h2
with explicit waits like :
h_ele = wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, "section.section div.container h2")))
print(h_ele.text)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With