GitXplorerGitXplorer
v

webdriver-reporting

public
29 stars
21 forks
0 issues

Commits

List of commits on branch master.
Unverified
49ea45415ab75ac71ced2748dc75e2d003d5f9ab

Merge pull request #3 from prab2112/master

vvorburger committed 9 years ago
Unverified
aca5349efc912ca1ff8194c26a687e4d29c0efa8

changes in util.js so that if package is of big length it doesn't overlap.

pprab2112 committed 9 years ago
Unverified
7c98884b88f31a58837292953520974f115d3cda

Only do special file-based deploy to target/ with -PdeployToTargetFolder instead of always (that prevented standard mvn deploy e.g. for corporate in-house use of this library)

vvorburger committed 10 years ago
Unverified
2870bce15396eb575e329056f607e7c55a352a96

upgrading webDriver version 2.35.0 => 2.42.2, because the old one

vvorburger committed 10 years ago
Unverified
f85ee365d868bb4eedeb877a173434e2a3a58e0f

Merge pull request #2 from bitdeli-chef/master

vvorburger committed 11 years ago
Unverified
884aa0d61255da0d527ac31e6c8803fbe60b7d00

Add a Bitdeli badge to README

bbitdeli-chef committed 11 years ago

README

The README file for this repository.

This is a small library which produces "Test Execution Reports", with Screenshots, Summary and some bells and whistles, for functional UI front-end tests written using Selenium 2.0 (AKA WebDriver) and JUnit.

See SampleGoogleSearchReportTest.java for a usage example. After running a (suite of) tests, you'll find an index.html report home page in the module's target/surefire-reports/tests directory, which looks like this.

Get the binary of it from my Maven repo, like this:

  <dependency>
			<groupId>ch.vorburger.webdriver</groupId>
			<artifactId>webdriver-reporting</artifactId>
			<version>1.1.0-SNAPSHOT</version>
	</dependency>
		
	...
  <repositories>
      <repository>
         <id>vorburger-releases</id>
         <url>http://vorburger.github.com/m2p2-repository/maven/releases</url>
      </repository>
      <repository>
         <id>vorburger-snapshots</id>
         <url>http://vorburger.github.com/m2p2-repository/maven/snapshots</url>
      </repository>
   </repositories>

Deployment to this Maven repo is currently manual (no continous integration set-up yet).. so to get latest SNAPSHOT, you better do a clone of this repo (src) and "mvn install" it locally if you can.

Please fork it on GitHub, improve it massively, and send pull requests! ;-)

Bitdeli Badge