i use some script in python in order to retrieve datas from my online bank. That is doing at first step:
driver = webdriver.Firefox()
driver.implicitly_wait(15) # seconds
driver.get('https://www.caisse-epargne.fr/particuliers/cote-d-azur/page_accessibilite.aspx')
time.sleep(2)
driver.find_element_by_id('checkBoxClavier').click()
driver.find_element_by_id('ctl01_CC_page_accessibilite_valider').click() # click su 'Valider'
...but the link is not followed! I tried several solution (put sleep, add implicit wait etc...) but without any result. Selenium Version: 2.48 Firefox: 42.0 The funny is that the very same script is working for a much older version of Firefox (20), run on a virtual machine, but now i am in need to run the version on the last Firefox. Any suggestion?
Regards