TestNG is a test automation framework, inspired by the JUnit/NUnit unit testing frameworks. TestNG is intended to support more than just unit testing, allowing functional, end-to-end, integration, etc.
1
vote
3answers
777 views
Selenium Webdriver cannot locate element for right click event
Hi Guys. I have a problem with right click mouse event in Selenium 2.0. I'm using that method but in a console I've got:
Unable to locate element:
...
1
vote
0answers
111 views
Selenium Webdriver and OpenLayers
I would like to check that the locations asset on map (openLayer) are the same with some asset in a row. What is the best way to do this? I'm using the TestNG framework.
1
vote
0answers
173 views
How to report test execution method when using @Factory in TestNG?
I am using @Factory annotation from TestNG to create tests dynamically. It will read a property file that contains the list of test cases to be executed and return them.
@Factory
public Object[] ...
1
vote
0answers
140 views
Dependent methods in the same class run out of order only when included in a “testng suite”; running class independently respects the dependency
I have a class with dependent methods using the TestNG annotation
dependsOnMethods
The test runs fine 100% of the time if I simply run it as a TestNG Test from the package.
When I include the test ...
0
votes
0answers
22 views
Can we write wrapper class for TestNG and Junit framework
I am writing a framework to run tests using Selenium webdriver which uses the TestNG framework. My requirement is to write a wrapper class to class TestNG framework, however I don't want to directly ...
0
votes
0answers
177 views
TestNG IRetryAnalyzer not working
I am using TestNG IRetryAnalyser, I am facing following issues
When I implement the listener and override retry () method getting following:
Listener ...
0
votes
0answers
294 views
JBehave + TestNG reporting
I am building a BDD-like system that would allow converting of pseudo-English into executable code for web testing. Our current test system is built in Java, using TestNG and Selenium to perform ...