Server « selenium « Java Testing Q&A

Home
Java Testing Q&A
1.Development
2.FindBugs
3.HTMLUnit
4.hudson
5.junit
6.performance
7.plugin
8.profile
9.selenium
10.Tools
11.unit test
Java Testing Q&A » selenium » Server 

1. Selenium testing -- any way to speed up the Selenium Server load time?    stackoverflow.com

By design, Selenium makes a new copy of your Firefox profile each time a new test is run. I find this copy time is a considerable bottleneck, especially when running ...

2. Selenium: Unable to connect to the remote server    stackoverflow.com

I'm trying to run a simple test with Selenium that somebody over in QA setup for me. This test has run before, and passed, but now I keep getting an error ...

3. Selenium: Is there a way to change the hosts file on the machine the server is running on    stackoverflow.com

I want to make the browser open a local url with a name of the live url. Meaning that when I do: sel.open('http://live-url/) selenium will actually open the local url. One would test ...

4. Is there any way to connect the Database server from Selenium RC?    stackoverflow.com

Does anyone know how to connect DB from Selenium RC? I need to run a lot of user IDs and passwords with different role access. Currently I am using this as ...

5. How can I tell JWebUnit to contact specific Selenium servers    stackoverflow.com

We want to run selenium backed jwebunit tests from our hudson server. We have a couple of selenium rc servers already on our network which I'd like to reuse. However how can ...

6. Building the Selenium Server Project    stackoverflow.com

I need to apply a few patches to the Selenium CaptureNetworkTrafficCommand.java code. In order to test the fixes, I will need to rebuild the selenium-server.jar. Is there any easy way to build the ...

7. can i start a selenium server with different port    stackoverflow.com

can i start a selenium server with different port from my code like we do seleniumserver s= new seleniumserver(); s.start() and set port??

8. Selenium Server on startup    stackoverflow.com

I'm using Selenium RC in a Ubuntu system. I want to automate the tests, and I need to start Selenium-server.jar on startup of the machine. I created seleniumServer.conf in /ect/init/ with:

start on startup
start ...

9. Selenium, Using multiple firefoxProfileTemplates at once / specifying from selenium object rather than at server launch?    stackoverflow.com

I am using Selenium RC for website testing and I need to use multiple proxies at once and am doing this using: firefoxProfileTemplate when I start the selenium server. This, however, ...

10. Unable to run selenium tests for server running in background    stackoverflow.com

I am running my selenium server in background with the help of nssm service. I am running the server at a particular port (11111). I wrote some unit test in VS 2010 ...

11. selenium rc server does not exit after running an htmlsuite    stackoverflow.com

Am I missing something obvious? The docos state that:

-htmlSuite    : Run a
    single HTML Selenese (Selenium Core) suite and then exit
    immediately ...

12. What is the difference between Selenium Remote Control and Selenium Server?    stackoverflow.com

On Selenium download page, there is a link to the Selenium RC (Remote Control). On another Selenium download page, there are links for a Selenium RC 1.0.3, as ...

13. How to check if selenium server is running in background    stackoverflow.com

Hi am using selenium 2.0 with netbeans IDE. I am writing a code to check if selenium server is running.But am not able to identify if its running or not because there ...

14. Selenium Server - Accept only 1 IP    stackoverflow.com

I got a Selenium server all set up, and for security reasons, I want to make it accept requests from just a specific IP. Is there a way to configure that? ...

15. Is it possible to start few seleniums for one selenium server?    stackoverflow.com

Is this valid code?

selenium = new DefaultSelenium("localhost", 4444, "*iehta",
        "http://www.google.com/");

selenium.start();

...

selenium.stop();

...

selenium.start();

...

selenium.stop();

16. where/ how can I get the selenium server source code used to build 2.0b3    stackoverflow.com

I am trying to apply this bug fix http://code.google.com/p/selenium/source/detail?r=11856 to the selenium-server-standalone-2.0b3.jar. Does anyone know where I can get the source code? The jar only contains class files. Or if ...

17. capture screenshot comes blank when server is running in remote m/c    stackoverflow.com

iam running my server in remote m/c and connecting browser from other m/c the capture screenshot comes as blank. iam using selenium.captureScreenshot(). in some m/c it works ,above issue happens when my m/c ...

18. If I'm using MAMP, where should I install selenium server on a Mac?    stackoverflow.com

I'm using a book to learn Yii, and it's telling me to install selenium server to do functional testing. Where is the best place to install this if I'm using Mac. ...

19. How do I setup a selenium server?    stackoverflow.com

I'd like to setup a Selenium server so that clients can record tests locally and then these and these can be replayed and tested on an Ubuntu server with Firefox ...

20. selenium-server-standalone-2.0rc2.jar running on server, how to get started?    stackoverflow.com

I downloaded and excuted via java -jar selenium-server-standalone-2.0rc2.jar.... and selenium remote control is running.... basically, two other people and myself need to run firefox browser tests of our web application. how can 3 people ...

21. Update selenium server    stackoverflow.com

I'm using selenium server (standalone jar), launching it from java code. I'm trying to update it from

selenium.rc.version=2.0 
selenium.rc.revision=a2 
to
selenium.rc.version=2.0 
selenium.rc.revision=rc2
code:
RemoteControlConfiguration rcc = new RemoteControlConfiguration(); 
rcc.setPort(port); 
try { 
 ...

22. How can I send headless Selenium RC tests via an external proxy server?    stackoverflow.com

I need to use Selenium RC on a headless Ubuntu server to run tests against a website using an external proxy server to simulate a user in a different country. To test ...

23. how to get the version of Selenium RC server    stackoverflow.com

I am using selenium2 RC with the python client (selenium.py) and I need to get the version of the selenium on the server. (for example "2rc2","2rc3" etc.) is there any command i ...

24. Selenium 2: How to check that server is running and stop the server?    stackoverflow.com

With Selenium 1 there was the possibility to enter a URL to stop the server: http://:/selenium-server/driver/?cmd=shutDown Is there a similar way in Selenium 2? I tried the following URL to check whether the server ...

25. Automate Selenium tests on TeamCity Continuous Integration server    stackoverflow.com

I have a Visual Studio solution which includes a Test project having Selenium Tests. (I already have a compilation build triggered by version control checkin (Mercurial)) But I want to have a separate ...

26. How can we run Selenium Test suite on a Server    stackoverflow.com

I have 3 test Suites Test 1,Test 2 and Test 3. Each test Suite has 10 test Cases written in TESTNG-JAVA Code. I want to keeps these as a GUI buttons Test1,Test2 and ...

27. 403 : Access forbidden selenium    stackoverflow.com

I want to run my testcases with the help of parameters mentioned in the testSuite.xml file and use them in my test cases by mentioning "@Parameters({ "selenium.host", "selenium.port", "selenium.browser", "selenium.url" })" ...

28. How to run multiple testcases by running one selenium server    stackoverflow.com

I have 5 test suites (ie, multiple classes), each suite has its own separate server.start() and stop() as well as selenium.start() and stop(). Now, what I want is: I want my ...

29. How do I get Selenium server working with htmlunit?    stackoverflow.com

I downloaded selenium-server-standalone-2.7.0.jar and ran it like this to get a list of supported browsers:

java -jar selenium-server-standalone-2.7.0.jar -interactive
cmd=getNewBrowserSession
Unfortunately, htmlunit isn't in that list, but when I look at the

30. Selenium RC Server: Which regex options are supported for the userContentTransformation option?    stackoverflow.com

I'm using the Selenium server to run several suites of tests, and I need to modify a couple of values in each test using the userContentTransform option. In the Selenium ...

31. How can I run individual test cases against a locally running Selenium server?    stackoverflow.com

I found a project called Selenium Zoetrope that runs PHPUnit tests on a Selenium server and records video of the test using ffmpeg (see this blog post ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.