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
adityac
Professional
Professional
Posts : 101
Join date : 2013-01-17

Selenium RC-Java  Empty Selenium RC-Java

Thu Jan 31, 2013 7:13 pm
Hi,

Can some one provide concepts n material of java required for selenium RC....

plz provide it if available

Thnx in advance....
avatar
Poonam12031990
Active particpant
Active particpant
Posts : 18
Join date : 2013-01-29

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 3:42 pm
hi,
are you using eclipse?
avatar
adityac
Professional
Professional
Posts : 101
Join date : 2013-01-17

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 3:48 pm
yep....
avatar
Poonam12031990
Active particpant
Active particpant
Posts : 18
Join date : 2013-01-29

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 4:04 pm
then export a test case in selenium ide. follow the steps below:
file-->Export test case as--->Java/Junit3 or 4/Remote Control
save the file with '.java' extension in your system.
make sure you have all the jar files and Junit files installed in your system.
In eclipse, create a new project and import the jar and junit files.
add the java file to your source and just make sure you have following functions:


@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "browser name(*iexplore)", "base url");
selenium.start();
}

@After
public void tearDown() throws Exception {
selenium.stop();
}

your test case sits between these two func.........

hope i answered your question
avatar
adityac
Professional
Professional
Posts : 101
Join date : 2013-01-17

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 4:09 pm
ok thnqq poonam... Smile
avatar
adityac
Professional
Professional
Posts : 101
Join date : 2013-01-17

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 5:16 pm
poonam thnq for providing the inf... do u hav any material so tht quick reference cn be done
avatar
Poonam12031990
Active particpant
Active particpant
Posts : 18
Join date : 2013-01-29

Selenium RC-Java  Empty Re: Selenium RC-Java

Fri Feb 01, 2013 5:31 pm
no i dont.............jus net Crying or Very sad
Sponsored content

Selenium RC-Java  Empty Re: Selenium RC-Java

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