Skip to content

Commit

Permalink
Add build status to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jason0x43 committed Sep 12, 2018
1 parent 662f185 commit 6945dd7
Showing 1 changed file with 47 additions and 21 deletions.
68 changes: 47 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,54 +2,80 @@

<!-- start-github-only -->

A JavaScript client library that brings cross-platform consistency to the Selenium WebDriver API
A JavaScript client library that brings cross-platform consistency to the
Selenium WebDriver API

[![Build Status](https://travis-ci.org/theintern/leadfoot.svg?branch=master)](https://travis-ci.org/theintern/leadfoot)
[![npm version](https://badge.fury.io/js/leadfoot.svg)](https://badge.fury.io/js/leadfoot)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/theintern/leadfoot.svg)](http://isitmaintained.com/project/theintern/leadfoot "Average time to resolve an issue")
[![Percentage of issues still open](http://isitmaintained.com/badge/open/theintern/leadfoot.svg)](http://isitmaintained.com/project/theintern/leadfoot "Percentage of issues still open")
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/theintern/leadfoot.svg)](http://isitmaintained.com/project/theintern/leadfoot 'Average time to resolve an issue')
[![Percentage of issues still open](http://isitmaintained.com/badge/open/theintern/leadfoot.svg)](http://isitmaintained.com/project/theintern/leadfoot 'Percentage of issues still open')

<br><p align="center"><img src="https://cdn.rawgit.com/theintern/leadfoot/master/docs/logo.svg" alt="Leadfoot logo" height="128"></p><br>

<!-- end-github-only -->

[![Intern](https://theintern.io/images/intern-v4.svg)](https://github.com/theintern/intern/)

Unlike existing WebDriver client libraries that assume the remote server will just do the Right Thing, Leadfoot detects and works around inconsistencies in WebDriver server implementations, using native WebDriver/Selenium commands when possible, so you can just worry about making your tests work—not bugs in WebDriver servers.
Unlike existing WebDriver client libraries that assume the remote server will
just do the Right Thing, Leadfoot detects and works around inconsistencies in
WebDriver server implementations, using native WebDriver/Selenium commands when
possible, so you can just worry about making your tests work—not bugs in
WebDriver servers.

Enhanced capabilities are also exposed to end-users about which features and APIs a remote environment supports, so you don’t have to browser sniff to decide whether (for example) you’re testing a touch-device or a mouse-device. Optional convenience methods are also available for use, and support for chai-as-promised is built in.
Enhanced capabilities are also exposed to end-users about which features and
APIs a remote environment supports, so you don’t have to browser sniff to decide
whether (for example) you’re testing a touch-device or a mouse-device. Optional
convenience methods are also available for use, and support for chai-as-promised
is built in.

Leadfoot has been tested with the following remote drivers:

* InternetExplorerDriver
* Microsoft WebDriver
* FirefoxDriver
* geckodriver
* ChromeDriver
* SafariDriver
* safaridriver (native)
* Selendroid
* ios-driver
- InternetExplorerDriver
- Microsoft WebDriver
- FirefoxDriver
- geckodriver
- ChromeDriver
- SafariDriver
- safaridriver (native)
- Selendroid
- ios-driver

## Using Leadfoot

Leadfoot can be installed and used as a [stand-alone library](docs/how_to.md#use-leadfoot-as-a-standalone-library). It is also an integral part of the [Intern testing framework](https://theintern.io), which provides you with all of the tools you need to write robust unit and functional tests. Follow the instructions on [writing functional tests with Intern](https://theintern.io/docs.html#Intern/4/docs/docs%2Fwriting_tests.md/functional-tests) to learn how to use Leadfoot with Intern.
Leadfoot can be installed and used as a
[stand-alone library](docs/how_to.md#use-leadfoot-as-a-standalone-library). It
is also an integral part of the
[Intern testing framework](https://theintern.io), which provides you with all of
the tools you need to write robust unit and functional tests. Follow the
instructions on
[writing functional tests with Intern](https://theintern.io/docs.html#Intern/4/docs/docs%2Fwriting_tests.md/functional-tests)
to learn how to use Leadfoot with Intern.

## Firefox, Safari, and Edge

Firefox 49+, Safari 10+, and Microsoft Edge are all on the bleeding edge of WebDriver-based browser automation. They all use relatively new drivers that implement the still-under-development W3C WebDriver standard, so feature support is spotty at times. For best results, use the most recent versions of Selenium and the browser’s native driver (geckodriver, Microsoft WebDriver, or safaridriver), and the most recent browser version in Firefox’s case.
Firefox 49+, Safari 10+, and Microsoft Edge are all on the bleeding edge of
WebDriver-based browser automation. They all use relatively new drivers that
implement the still-under-development W3C WebDriver standard, so feature support
is spotty at times. For best results, use the most recent versions of Selenium
and the browser’s native driver (geckodriver, Microsoft WebDriver, or
safaridriver), and the most recent browser version in Firefox’s case.

## More information

* [Architecture](docs/architecture.md) — An overview of Leadfoot’s architecture
* [How To](docs/how_to.md) — Quick answers to common questions
* [API documentation](https://theintern.io/docs.html#Leadfoot/2/api/Command)
- [Architecture](docs/architecture.md) — An overview of Leadfoot’s architecture
- [How To](docs/how_to.md) — Quick answers to common questions
- [API documentation](https://theintern.io/docs.html#Leadfoot/2/api/Command)

<!-- start-github-only -->

## License

Leadfoot is a JS Foundation project offered under the [New BSD](LICENSE) license.
Leadfoot is a JS Foundation project offered under the [New BSD](LICENSE)
license.

© [SitePen, Inc.](https://sitepen.com) and its
[contributors](https://github.com/theintern/leadfoot/graphs/contributors)

© [SitePen, Inc.](https://sitepen.com) and its [contributors](https://github.com/theintern/leadfoot/graphs/contributors)
<!-- end-github-only -->

<!-- doc-viewer-config
Expand Down

0 comments on commit 6945dd7

Please sign in to comment.