Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
premanand
Posts : 2
Join date : 2015-04-14

In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing Empty In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing

Tue Apr 14, 2015 6:05 pm
Hi,

Am trying to click on five buttons at the same page to change the status of the corresponding user.

Each time after the status is changed , the browser confirmation message box is displayed as 'Updated successfully'.

While running , the message box is displayed and it is closed automatically by selenium. But after that the next button click statement is not executing. 

I have tried using Thread.Sleep(5000) and Implicit wait . Both are not working.

My selenium webdriver java code:

                ClickOn(or("btn_status1"));
Thread.sleep(2000);
ClickOn(or("yes btn"));
Thread.sleep(2000);
ClickOn(or("yes btn"));

// Confirmation browser message box is displayed here

Thread.sleep(5000);

                // dr.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);
     
ClickOn(or("btn_status2"));

Any help would be greatly appreciated.

Thanks in advance.
avatar
bhavani
Posts : 4
Join date : 2015-04-20

In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing Empty Re: In selenium web driver , while running the script ,after the browser(modal) message box is displayed and closed by selenium , the next button click statement is not executing

Mon Apr 20, 2015 8:09 pm
First change the focus to alert message and then use
ClickOn ("yrs");
Hope it is helpful
Back to top
Permissions in this forum:
You cannot reply to topics in this forum