I have the following Selenium script for opening alert on rediff.com:
public class TestC {
public static void main(String[] args) throws InterruptedException, Exception {
System.setProperty("webdriver.chrome.driver", "driver/chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.rediff.com/");
driver.findElement(By.xpath("//*[@id='signin_info']/a[1]")).click();
driver.findElement(By.id("btn_login")).click();
Thread.sleep(5000);
Alert alert=driver.switchTo().alert();
alert.accept();
}
}
This very same script is working fine in Firefox and IE9, however using Google Chrome after opening the alert, rest of the code is not working. The main thing is that does not shows any exception, error or anything.
Please provide any solution as soon as possible. Thanks a lot!
Note: If we need to change any setting of browser or any thing please let me know.
Selenium version:Selenium(2) Webdriver
OS:Windows 7
Browser:Chrome
Browser version:26.0.1410.64 m
Unfortunately AlertIsPresent doesn't exist in C# API http://selenium.googlecode.com/git/docs/api/dotnet/index.html
You can use something like this:
I'm pretty sure your problem is a very common one, that's why i never advise using
Thread.sleep()
, since it does not guarantee the code will run only when theAlert
shows up, also it may add up time to your tests even when the alert is shown.The code below should wait only until some alert is display on the page, and i'd advise you using this one Firefox and IE9 aswell.
Mostly all that is done here, is changing
Thread.sleep()
, for a condition that actually will only move forward on the code as soon aalert()
is present in the page. As soon as someone does, it wil switch to it and accept.You can find the Javadoc for the whole
ExpectedConditions
class here.