I want to press the "continue without microphone" button. No matter how I try to find it and press it, I can't :C I tried Selenium IDE and I managed to click it, but after converting it into python code it doesn't work either.
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import undetected_chromedriver as uc
options = webdriver.ChromeOptions()
options.add_argument('--no-default-browser-check')
options.add_argument('--safebrowsing-disable-download-protection')
options.add_argument('--disable-popup-blocking')
options.add_argument('--disable-web-security')
options.add_argument('--no-sandbox')
#options.add_argument("--disable-infobars")
#options.add_argument("--disable-notifications") #And why is it that if I enable this option, Google won't let me in at all.
driver = uc.Chrome(options=options)
driver.get('https://meet.google.com/oqm-zoqm-wmx')
try:
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.CSS_SELECTOR, ".VfPpkd-ksKsZd-mWPk3d-OWXEXe-Tv8l5d- lJfZMc > .VfPpkd-vQzf8d"))
)
element.click()
except Exception as e:
print(f"{str(e)}")
finally:
while True:
pass
'
And I don't know why it suddenly works...