From: Arup Rakshit Date: 2013-01-24T23:08:06+09:00 Subject: How to refresh a page on browser using selenium-webdriver. Follow the below part of the code: driver.get "https://example.com/" element = driver.find_element :name => "username" element.send_keys "*****" element = driver.find_element :name => "password" element.send_keys "*****" element.submit Now point is when the "driver" opened the URL on the browser, Some times the next page to which username and password has to be put by the script, not coming- which causes the script to failed. Some intermediate page is coming asking us to click on 'retry button' or 'refresh the page'. Thus the script whenever such case occurred stopped execution, as not getting the mentioned element. So is there any way to refresh that intermediate page with "sleep" before going to the "Log-in" page, so that script can run in one go? Thanks, -- Posted via http://www.ruby-forum.com/.