- GuestGuest
Selenium2: C#/NUnit: Alert window problem.
Wed Jun 01, 2011 3:53 am
Hi all , I have question about alert window. I would like check if the
text on the alert window is correct. I have following part of code (I'm using c# and NUnit):
_driver.Navigate().GoToUrl("http://page");
IWebElement inafns = _driver.FindElement(By.Id("sc_Infants"));
inafns.SendKeys("9");
inafns.Clear();
(below part of codes is correct and working)
Alert window: http://screencast.com/t/1BbjlnrDSH
How I can check that text on the screenshot is correct? I've tried with IAlert interface, but without success:
IAlert alert = _driver.SwitchTo().Alert();
alert.Text.Contains("text_here");
Maybe anyone knows how can I do it?
text on the alert window is correct. I have following part of code (I'm using c# and NUnit):
_driver.Navigate().GoToUrl("http://page");
IWebElement inafns = _driver.FindElement(By.Id("sc_Infants"));
inafns.SendKeys("9");
inafns.Clear();
(below part of codes is correct and working)
Alert window: http://screencast.com/t/1BbjlnrDSH
How I can check that text on the screenshot is correct? I've tried with IAlert interface, but without success:
IAlert alert = _driver.SwitchTo().Alert();
alert.Text.Contains("text_here");
Maybe anyone knows how can I do it?
- ChuckFirment
- Posts : 2
Join date : 2011-08-24
Re: Selenium2: C#/NUnit: Alert window problem.
Wed Aug 24, 2011 4:11 am
Pamopl,
It appears that the alert is part of the web page. Using the Firefox add-on Firebug, you can probably get the location of the alert and simply check its text properties.
That's how I'm checking a similar alert in my tests. Good luck.
It appears that the alert is part of the web page. Using the Firefox add-on Firebug, you can probably get the location of the alert and simply check its text properties.
That's how I'm checking a similar alert in my tests. Good luck.
- Problem testing a smartgwt application with Selenium2
- How to shift the focus from one window to another window and proceed the action in Second window?
- how to switch to popup window without window id
- how to select(get focus on) new window after clicking link in existing window
- How to get focus to main window after popup window is closed.
Permissions in this forum:
You cannot reply to topics in this forum