Suggest best reporting tool with selenium webdriver [closed] - selenium

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?

Related

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.

i am a newbie in automation testing using Selenium. What do I need to run an automation test? [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 know Selenium IDE should be needed to record/playback a test. What are the other things in selenium i need, to automate test cases. I am not sure about anything other that recording and playing back. How does this selenium actually works. Do i need to code any programs like developing? or only recording the test will be enough? Share you knowledge about Selenium test.
Where can i get best tutorial for Selenium?
Do i need to code any programs like developing? or only recording the
test will be enough?
This largely depends on what you require your tests to do. If you only need to record a very straightforward set of tests, using the Selenium IDE and recording tests will probably be sufficient. If you are trying to make a robust and extensible test suite, with varied input and/or varied test conditions, you will probably need to do some development to fully tap into the power of Selenium.
The best resources that I know of are the official Selenium documentation, which is well-written and even comes with a bunch of pictures to help walk you through starting with Selenium. For more detailed or technical questions, I would refer to the Selenium google group, which is pretty active.
I recommend these high rating Selenium video tutorial (duration : 2.5 hours in 3 parts) :
http://www.youtube.com/watch?v=3BeK5aH2y3Q
http://www.youtube.com/watch?v=jWDGM4eZqVw
http://www.youtube.com/watch?v=7dC7eiDqytc
Although its title is Selenium + JUnit, but actually it is all about Selenium IDE

Eclipse plugin for TestNG coverage [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
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.