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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
can i start a selenium server with different port from my code like we do
seleniumserver s= new seleniumserver();
s.start()
and set port??
|
|
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 ...
|
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, ... |
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 ... |
Am I missing something obvious? The docos state that:
-htmlSuite : Run a
single HTML Selenese (Selenium Core) suite and then exit
immediately ... |
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 ... |
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 ... |
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? ... |
Is this valid code?
selenium = new DefaultSelenium("localhost", 4444, "*iehta",
"http://www.google.com/");
selenium.start();
...
selenium.stop();
...
selenium.start();
...
selenium.stop();
|
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 ... |
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 ... |
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. ... |
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 ... |
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 ... |
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 {
...
|
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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" })" ... |
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 ... |
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 |
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 ... |
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 ... |