Questions tagged [selenium-webdriver]

5 questions
4
votes
2 answers

How to make a webdriver run reliably in Selenium?

I have been having quite a time getting this to work reliably for 100s of thousands of terms and potentially millions of pages per source and ETL the resulting data into a database in an automated fashion. I need to run the tasks in Mesos on a…
user3916597
  • 197
  • 2
  • 8
3
votes
1 answer

Automated Testing: where do I put Selenium?

I'm working on a Java application, it's a middleware between two ticketing webapps. I want to write end2end tests using Selenium to test functionality. Let's say my testing process goes like this: I manually start a Jenkins Job, it compiles my app…
0
votes
2 answers

How to identify test result as "ignore" (not successful or unsuccessful) in process of execution?

We use Selenium webdriver + SpecFlow for testing our Web application. For some functionality, everything is clear. But imagine the situation: some questions arrive to Web user from external system he may answer. The test should "test" if the user…
Alexander
  • 101
  • 3
-1
votes
1 answer

Is there a benefit to using a specific language with Selenium WebDriver?

As I begin to make the leap from the Firefox Selenium IDE to Selenium 2, I'm realizing that a significant portion of tutorials, guides, books, and documentation regarding WebDriver is based in Java; C# seems to take a somewhat close second. Is…
8protons
  • 1,359
  • 1
  • 10
  • 27
-3
votes
1 answer

TestNG runner when using @DataProvider combined with apache poi does not execute tests sequentially

EDIT: I have an ExcelUtility.java class to get cell data from it and pass it on to the tests methods in my test class. I am reading from 1 excel file. The excel file has 3 worksheets. Every worksheet has 1 unique working table inside. I have 1 Test…