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
seltestng
Posts : 2
Join date : 2010-12-02

RC Browser closed in the middle of execution Empty RC Browser closed in the middle of execution

Thu Dec 02, 2010 1:58 pm
Hi All,

I have just started learning Selenium. I am trying to use Selenium RC for automating my application.

I am trying a test case to just login to my application.
When I run the test case, two browsers are opened. One is Selenium RC server and the other is the Base URL I have given in the test case. But after the selenium.open statement, the browser opened for the base url gets closed and the base url is opened in the selenium RC server browser. The test case does not execute further.

Please find below the code I am using

private Selenium selenium = new DefaultSelenium( "localhost",4444,"*firefox",BASE_URL);
selenium.selectWindow(null);
selenium.setTimeout("0");
selenium.open(BASE_URL);
selenium.waitForPageToLoad(MAX_WAIT_TIME_IN_MS);
selenium.setTimeout("0"); // Execution stops here
selenium.waitForPageToLoad(MAX_WAIT_TIME_IN_MS);
selenium.type("username", "seltest");
selenium.type("password", "seltest");
selenium.waitForPageToLoad(MAX_WAIT_TIME_IN_MS);
selenium.click("loginBtn");
selenium.waitForPageToLoad(MAX_WAIT_TIME_IN_MS);
selenium.close();

Please help me in solving this problem. I am not able to proceed further.

Thanks,
Selenium Tester
avatar
Priyanka
Regular Participant
Regular Participant
Posts : 27
Join date : 2010-10-04

RC Browser closed in the middle of execution Empty Re: RC Browser closed in the middle of execution

Thu Dec 02, 2010 2:11 pm
Hi... Try this

public void Login()
{
selenium.open(BASE_URL);
selenium.type("username", "seltest");
selenium.type("password", "seltest");
selenium.click("loginBtn");
selenium.waitForPageToLoad(MAX_WAIT_TIME_IN_MS);
}

Please use the above commands(only)....I hope u can login successfully ..


avatar
seltestng
Posts : 2
Join date : 2010-12-02

RC Browser closed in the middle of execution Empty Re: RC Browser closed in the middle of execution

Thu Dec 02, 2010 2:18 pm
Thanks for the quick response.

I tried with the above code. But the problem still exist.
The browser closes after open statement and the execution gets halted.

In console I can see the last message

Command request: open[http://example.tools.com/app-admin/, ] on session 416d3231f0b544eda749fb31e0b11e53
Sponsored content

RC Browser closed in the middle of execution Empty Re: RC Browser closed in the middle of execution

Back to top
Permissions in this forum:
You cannot reply to topics in this forum