How to click on the Ask to join button within https://meet.google.com using Selenium and Python?
问题 I am trying to click the Ask to join button in a google meet link(using my existing Google Chrome profile).This is the code: options = webdriver.ChromeOptions() options.add_argument(r"--user-data-dir=C:\\Users\\Pranil.DESKTOP-TLQKP4G.000\\AppData\\Local\\Google\\Chrome\\User Data") browser = webdriver.Chrome(ChromeDriverManager().install(), options=options) delay = 15 browser.get('https://meet.google.com/tws-kcie-aox') ignored_exceptions=(NoSuchElementException,StaleElementReferenceException,