Tagged Questions

1
vote
1answer
71 views

How to reduce the time in executing Selenium test cases?

I'm writing the Selenium test cases for each screen to test the different scenarios. In our project for each build in Jenkins, its Selenium test cases (QA) also runs automatically. My problem is even ...
1
vote
1answer
128 views

TestSuite with testsuites and testcases

I need to make a big python suitecase consisted of other suitcases and testcase which I have already made to execute together. How do I do this? For example, here there is a suitecase ...
1
vote
2answers
363 views

How to input parameters into Selenium RC TestSuite?

I have to test few sites which sales the same things, but they have an another template. So I want to run each MainTestClass with giving some input parameter, let's say : java -jar ...
1
vote
1answer
721 views

Selenium: Dynamic buttons and classes?

So, I was trying out a test case on a website and Selenium registers the events perfectly. Now, if I have to search for a particular class and get the innerHTML of that class, how would I do it ...
1
vote
3answers
1k views

having javascript force a Selenium test to fail

Is there a way for js code to force Selenium testing to fail? For (a probably bad) example, if I had the following: return document.getElementById('foo').innerHTML == 'hello' is there a way I could ...
0
votes
1answer
94 views

Restart failed test case automatically in testng/selenium

This question is kinda hard to google out, so I thought I would ask here. I am using selenium webdriver, in java with testng to run an X amount of test cases. What I would like, is for any test case ...
0
votes
2answers
443 views

Attempting to run Selenium IDE Python scripts as test suite

I have a couple of problems with running more than one Python test script exported by Selenium IDE Python Remote Control plugin formatter. 1) After a python script is completed the browser window ...
0
votes
1answer
184 views

How to use selenium storeValue in another window

I need to create a following testcase in selenium and seek help 1.Open a site http://foo.bar in browser 2. log to site 3. select some content and store in a variable (this can be done through ...