My selenium webdriver goes to a page and waits for that page to finish loading. If 30 seconds pass it times-out and the script fails.
Is there anyway to have the
Try using this:
driver.manage().timeouts().pageLoadTimeout();
Documentation: Page Load Timeout
Also, as a tip, you cannot access native controls of the browser using Selenium WebDriver. If you want to do that, use tools like Sikuli if you are using Linux or AutoIt for windows.