Here's the Xpath for the button I'd like to click:
//*[@id="interstitial_join_btn"]
but when I run something like:
driver.find_element_by_xpath('//*[@id="interstitial_join_btn"]')
the console spits out:
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="interstitial_join_btn"]"} (Session info: chrome=80.0.3987.163)
This is to click the join button for a meeting within the web-version of WebEx.
If I could brute force it with pyautogui
like some other stuff in my script I would but I've been scratching my head at this for days now (newbie to selenium/HTML)
Thanks