Tagged Questions
5
votes
2answers
1k views
How can I identify the Selenium Grid host running my test from within the test?
I am using Selenium Grid with TestNG to run my tests in parallel. I have certain tests that require a user to be logged in, so I have a user account configured for testing.
I have been careful to ...
1
vote
1answer
1k views
TestNG + Selenium Grid, only one RC running,
I am using Selenium Grid with TestNG to test a website. The test-code, that i exported from the Selenium IDE works fine. My problem is, the tests are running sequential, not parallel.
Here is the ...
0
votes
1answer
119 views
Data provider is not running in Selenium Grid
Can anyone please tell me that why the below error occurs: it occurs for all data provider methods. I use a static class for entire data providers and am using @Test(dataProvider = "Search", ...
0
votes
1answer
123 views
is there any material for seleniumGrid + testNG+ hudson integration
I am using selenium RC + TestNG for my project. Also am using Selenium - Grid to run in multiple platforms. Now i want to intergrate my project into Hudson.. Can any one please help
0
votes
1answer
108 views
Presever-order=true does not work in selenium-grid
@BeforeTest
@Parameters({"selenium.host", "selenium.port", "selenium.browser", "selenium.url" })
public void startServer(String host, String port, String browser, String url) throws Exception {
...
0
votes
1answer
312 views
Selenium Grid throws Parameter 'selenium.host' is required by @Configuration on method startServer
On running Selenium Grid I am getting the below exception:
org.testng.TestNGException:
Parameter 'selenium.host' is required by @Configuration on method startServer
but has not been marked @Optional ...
0
votes
1answer
243 views
how to run test method multiple times for different values
I have just started using selenium grid with Testing tool for a web testing.
I have a class with this method @Test, I have hardcoded the URL here and wrote multiple methods with different URLs. but i ...
0
votes
2answers
195 views
Why doesn't Selenium return from this internal HTTPS URL?
Can someone please tell me why Selenium can't return from opening this internal HTTPS URL?
https://red1cert.red-usa.com:37443/index.php3
After a call to ...
0
votes
1answer
379 views
Selenium grid tests with TestNG - multiple tests on multiple machines
we have a running selenium grid setup. Before the grid, when I started the tests with the suite parameter parallel="tests" it would start several browser instances on the same machine. Now that I've ...