Eclipse plugin for TestNG coverage [closed] - eclipse-plugin

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anybody know about an Eclipse plug-in to analyze code coverage for TestNG unit tests?

EclEmma can be run on TestNG test suites. You can also run a group of test or a given TestNG class with it. It requires the TestNg plug-in
On EclEmma plugin, choose "coverage configuration..." and select the TestNG tab.

Yes EclEmma is the best one. You can also try maven based cobertura which is also good enough.

I also use EclEmma , ever had a look at Clover ? - very , very nice , but not open source.

Related

Suggest best reporting tool with selenium webdriver [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have done with my selenium webdriver script.now,I have tried TestNG and XSLT but still manager is not satisfied with output of generated reports. please suggest me best reporting tools for selenium.
I use following reports while working with TestNG and Selenium.
ReportNG: This is similar to TestNG report however looks far better than TestNG.
http://reportng.uncommons.org/
Maven SureFire Report: if you are using maven project you can have maven surefire plugin and generate a report, it's also far better than that of TestNG.
http://maven.apache.org/surefire/maven-surefire-plugin/
ExtentReport: this is my favorite. It's bit tricky to configure but worth it. It has extentx server as well which stores historical data.
http://extentreports.com/
http://extentreports.com/docs/extentx/
Selenium itself does not provide any reporting features. Reporting is provided by the platform you are using to run tests. As you mentioned yourself, tools like TestNG, jUnit or even Cucumber. Perhaps there are some extensions to these testing frameworks that can provide better results.
What exactly your boss is unhappy with? Perhaps you can tune some settings to improve the current result?

Whether to go for TestNG or Junit for UI Automation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Planning to build a automation framework using selenium with java.
Quite confused to execute the testcase, whether to go with testng or junit.
Please provide your suggestions...
If you are having lot of dependencies and input constrains you can opt for TestNg. It is having many annotations which controls your test suite in a proper way.
Check out this link. It compares JUnit 4 and TestNG.
I personally use TestNG as it provides more annotations and dependencies. Everything is explained in an article above.
Hope it helps!

Good Selenium WebDriver Extension? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I noticed that the webdriver doesnt have much support for .net. There are plenty of functions for java and ruby but C# is kinda lagging far... behind.
Does anybody know of any extensions classes or libraries that help C# testers. Currently converting tests from Watin to Selenium and I'm starting to realize selenium does not have a ton of support for things like the table class, select lists, ect.
You could also try. We use it, and love it.
Selenium WebDriverSEd Nuget
Selenium WebDriverSEd GitHub
Shameless self-plug (because I'm on the dev team for this framework):
Try: http://webinator.codeplex.com/
Have you downloaded the C# Client Driver from Selenium? http://selenium.googlecode.com/files/selenium-dotnet-2.17.0.zip
I'm using it and I can use XPath with it as well:
_ieWebDriver.Navigate().GoToUrl("http://www.google.co.uk");
IWebElement queryBox = _ieWebDriver.FindElement(By.Name("q"));
queryBox.FindElement(By.XPath(""));
For Table Class with Selenium, you may like to have a look at FITNESSE to be used with Selenium.

Any Open Source projects that has Selenium 2.0 tests? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm starting to use Selenium for UI testing and was wondering if there were any open source projects with decent tests that I can use for learning about how to design the Selenium tests.
Any other resources about designing the UI tests would also be appreciated.
I've read the documentation on the Selenium website which is a good start but I'm hoping to find some info/examples of how to make sure your numerous tests are maintainable in the future.
Cheers,
Sam
GWT Mobile Web Toolkit appears to be using Selenium. I had read that jQuery was using it, but I can't see any evidence of them using it in there source code repository.
You may also find this answer helpful.
Update:
Google Caja has some tests that can be found here
A search on Google Code Search may also help track down examples of usage.
Looks like the guys over at Atlassian are using it for Jira and some of there other projects:
Part 1
Part 2
Part 3
part 3 has links to the projects that they have been working on.

Which repository holds the Maven 2 Simian plugin? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there a Maven Simian plugin available for Maven 2.x? I can't seem to locate a repository which holds it.
The earliest mention I could find was an unreleased version at:
https://svn.codehaus.org/mojo/trunk/sandbox/simian-report-maven-plugin/
Perhaps I'm googling using the wrong terms...
The plugin Robert references is in fact a Maven 1 plugin, for details see my answer to a related question. As far as I can make out there isn't actually a Simian plugin for Maven 2. Try PMD CPD instead (for details see the referenced answer above).
It's the the central repo - search with nexus.