- prateeksahu
- Posts : 1
Join date : 2012-03-16
Location : Noida
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...
Thanks:bounce:
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...
Thanks:bounce:
- Sanjay SRegular Participant
- Posts : 34
Join date : 2012-02-10
Age : 37
Location : Chennai
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..
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..
Permissions in this forum:
You cannot reply to topics in this forum