So I have the following setup
JavaScript
x
6
1
# Setup webdriver
2
wait = 10
3
driver = webdriver.Chrome(ChromeDriverManager().install())
4
driver.get(url)
5
wait = WebDriverWait(driver, wait)
6
I then navigate to a certain page – I have attached the inspect part below and want to click on the part highlighted in red
The code to implement this is below:
JavaScript
1
5
1
# Click on link
2
vs_table_path = "//a[@href='/care/chart/wandv/viewallclientvitals.jsp?ESOLstdvitalid=1&ESOLview=Weights&ESOLclientid=533354']"
3
vs_table = wait.until(EC.presence_of_element_located((By.XPATH, vs_table_path)))
4
vs_table.click()
5
When I run this – it does not open up this link and I get a TimeoutException
(from the wait
).
I don’t understand what the issue is here – I did the exact same thing on previous parts of the code to navigate the webpage and it worked. I also made sure the xpath matches exactly the attached inspect.
Please see href text below:
JavaScript
1
4
1
//a[@href='/care/chart/wandv/viewallclientvitals.jsp?ESOLstdvitalid=1&ESOLview=Weights&ESOLclientid=533354']
2
3
4
Advertisement
Answer
try this instead :
JavaScript
1
2
1
wait.until(EC.element_to_be_clickable((By.XPATH, "//a[text()='view all']"))).click()
2
or
probably try this also :
JavaScript
1
2
1
wait.until(EC.element_to_be_clickable((By.LINK_TEXT, "view all"))).click()
2
Please refer official docs