In python I have:
driver = webdriver.Safari()
driver.get("https://ug3.technion.ac.il/rishum/login")
driver.find_element_by_id("username").send_keys(user_id)
driver.find_element_by_id("password").send_keys(password)
driver.find_element_by_class_name("btn btn-success").click()
But for some reason it doesn't click on sign bottom (the green one) how can I fix this?
Update: from the comments I got I understand that I need to solve the captcha thus I want now to click on the Audio bottom, in a tutorial they wrote:
driver.switch_to.default_content()
frames = driver.find_element_by_xpath("/html/body/div[2]/div[4]").find_elements_by_tag_name("iframe")
driver.switch_to.frame(frames[0])
delay()
# click on audio challenge
driver.find_element_by_id("recaptcha-audio-button").click()
but that didn't work for me.