- alphaChill
- Posts : 2
Join date : 2010-08-11
Selenium-Server does not work with opera!
Wed Aug 11, 2010 9:29 pm
Hi,
i record a little testscript with the firefox Selenium IDE. I saved it into a testsuit, which is called "TestSuite.html", my testcase ist called "Testcase" (without.html). Now i want to to do the test in several browsers (like opera, chrome, safari and the internet explorer). Wehn i runt the command "java -jar selenium-server.jar -htmlSuite "*safari" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"" safari is launching but nothing more happens
Only getting this windows:
(localhost is a apache-Server! (xampp))
Selenium-Server give me these messages:
16:20:22.580 INFO - Java: Sun Microsystems Inc. 17.0-b16
16:20:22.595 INFO - OS: Windows XP 5.1 x86
16:20:22.595 INFO - v2.0 [a2], with Core v2.0 [a2]
16:20:22.799 INFO - RemoteWebDriver instances should connect to: http://127.0.0.1:4444/wd/hub
16:20:22.799 INFO - Version Jetty/5.1.x
16:20:22.799 INFO - Started HttpContext[/selenium-server/driver,/selenium-server/driver]
16:20:22.799 INFO - Started HttpContext[/selenium-server,/selenium-server]
16:20:22.799 INFO - Started HttpContext[/,/]
16:20:22.924 INFO - Started org.openqa.jetty.jetty.servlet.ServletHandler@47858e
16:20:22.924 INFO - Started HttpContext[/wd,/wd]
16:20:22.924 INFO - Started SocketListener on 0.0.0.0:4444
16:20:22.924 INFO - Started org.openqa.jetty.jetty.Server@17ace8d
16:20:23.455 INFO - Launching Safari ...
How is it possible to launch the test in Safari?
Wehn i run the command with "*firefox" all works fine...
i record a little testscript with the firefox Selenium IDE. I saved it into a testsuit, which is called "TestSuite.html", my testcase ist called "Testcase" (without.html). Now i want to to do the test in several browsers (like opera, chrome, safari and the internet explorer). Wehn i runt the command "java -jar selenium-server.jar -htmlSuite "*safari" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"" safari is launching but nothing more happens
Only getting this windows:
(localhost is a apache-Server! (xampp))
Selenium-Server give me these messages:
16:20:22.580 INFO - Java: Sun Microsystems Inc. 17.0-b16
16:20:22.595 INFO - OS: Windows XP 5.1 x86
16:20:22.595 INFO - v2.0 [a2], with Core v2.0 [a2]
16:20:22.799 INFO - RemoteWebDriver instances should connect to: http://127.0.0.1:4444/wd/hub
16:20:22.799 INFO - Version Jetty/5.1.x
16:20:22.799 INFO - Started HttpContext[/selenium-server/driver,/selenium-server/driver]
16:20:22.799 INFO - Started HttpContext[/selenium-server,/selenium-server]
16:20:22.799 INFO - Started HttpContext[/,/]
16:20:22.924 INFO - Started org.openqa.jetty.jetty.servlet.ServletHandler@47858e
16:20:22.924 INFO - Started HttpContext[/wd,/wd]
16:20:22.924 INFO - Started SocketListener on 0.0.0.0:4444
16:20:22.924 INFO - Started org.openqa.jetty.jetty.Server@17ace8d
16:20:23.455 INFO - Launching Safari ...
How is it possible to launch the test in Safari?
Wehn i run the command with "*firefox" all works fine...
- alphaChill
- Posts : 2
Join date : 2010-08-11
Re: Selenium-Server does not work with opera!
Thu Aug 12, 2010 2:54 pm
Now, I was able to solve my problem for the following browsers by deactivating the PopUp-Blocker and running the commands:
Internet Explorer
java -jar selenium-server.jar -htmlSuite "*iexploreproxy" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
Firefox
java -jar selenium-server.jar -htmlSuite "*firefox" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
(i prefer the IDE for testcases in firefox)
Google-Chrome
java -jar selenium-server.jar -htmlSuite "*googlechrome" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
Safari
java -jar selenium-server.jar -htmlSuite "*safariproxy" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
But I wasn't able to solve my problem for Opera
When I run the command:
java -jar selenium-server.jar -htmlSuite "*opera" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
I get the following result: (URL to picture: http://home.arcor.de/xrrx/opera.JPG)
Why is opera not able to find a page which can be found by any other browser??
Internet Explorer
java -jar selenium-server.jar -htmlSuite "*iexploreproxy" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
Firefox
java -jar selenium-server.jar -htmlSuite "*firefox" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
(i prefer the IDE for testcases in firefox)
Google-Chrome
java -jar selenium-server.jar -htmlSuite "*googlechrome" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
Safari
java -jar selenium-server.jar -htmlSuite "*safariproxy" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
But I wasn't able to solve my problem for Opera
When I run the command:
java -jar selenium-server.jar -htmlSuite "*opera" "http://localhost" "C:\tests\TestSuite.html" "C:\tests\output.html"
I get the following result: (URL to picture: http://home.arcor.de/xrrx/opera.JPG)
Why is opera not able to find a page which can be found by any other browser??
- dvojka
- Posts : 1
Join date : 2011-03-15
Re: Selenium-Server does not work with opera!
Tue Mar 15, 2011 9:40 pm
Hello, could you please write here if you have solved problem with Opera (and how), or not ? Because I have the same problem now..
Thanks
Thanks
- auto_ashish1Active particpant
- Posts : 21
Join date : 2011-03-10
Re: Selenium-Server does not work with opera!
Wed Apr 06, 2011 12:12 am
Are you you using the latest version of opera. Try using some older version
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
- isTextPresentXML does not work with selenium-server-standalone-2.25.0.jar
- [error] Could not connect to Selenium Server. Have you started the Selenium Server yet?
- Selenium webdriver Error - "Could not contact Selenium Server".
- Selenium RC test runner not coming up on Opera and Safari
- opera browser not loading the page using selenium Rc(Java)
Permissions in this forum:
You cannot reply to topics in this forum