I visited: http://132.247.137.206/web/guest/en/websys/webArch/mainFrame.cgi
and wrote the following in python (after waiting for page to load)
try:
tmp = driver.find_elements(By.XPATH, '//*[text()="Login"]')
print(tmp)
except Exception as e:
print('NONE FOUND!')
But all I see being printed is:
[]
Why is that?
I'm expecting the above code to return ay item in the page link or button that has the word Login.