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
prateeksahu
Posts : 1
Join date : 2012-03-16
Location : Noida

Not able to run application on google chrome with Selenium RC server Empty Not able to run application on google chrome with Selenium RC server

Fri Mar 16, 2012 1:37 pm
I have tested my application in firefox. Now I want to test it on google chrome but I am not able to run application in google chrome.

setUp(self):
self.verificationErrors = []
self.selenium = selenium(hostName, 4444, *firefox", strAppURL)
self.selenium.start()
I have tried the above code, but no luck...



For firefox I had created a profile using which I was starting RC server,

java -Dhttp.proxyHost=xxxxxxxxxxx -Dhttp.proxyPort=8080 -jar selenium-server-standalone-2.18.0.jar -port 4444 -interactive -singleWindow -debug -firefoxProfileTemplate "D:\Documents and Settings\User\Application Data\Mozilla\Firefox\Profiles\ymehr6z7.Selenium"



Is there a provision in selenium RC to use google chrome profile and use it while starting RC server...



Please Help me...pale pale pale

Thanks:bounce:
avatar
Sanjay S
Regular Participant
Regular Participant
Posts : 34
Join date : 2012-02-10
Age : 37
Location : Chennai

Not able to run application on google chrome with Selenium RC server Empty Re: Not able to run application on google chrome with Selenium RC server

Tue Mar 20, 2012 11:08 am
Hi....

Instead *firefox" in the below code you can use *googlechrome"

setUp(self):
self.verificationErrors = []
self.selenium = selenium(hostName,
4444, *firefox", strAppURL)
self.selenium.start()




And while starting the RC Server in the command window, just give as like the below following as selenium rc server run default in port 4444,

cd C:\Selenium
java -jar selenium-server-standalone-2.18.0.jar



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