More formatting fixes.
1 file changed
tree: 78bcf8f648a72398da673fe41547daa24fb7ebab
  1. lib/
  2. test/
  3. .gitignore
  4. AUTHORS
  5. LICENSE
  6. PATENTS
  7. pubspec.yaml
  8. README.md
README.md

webdriver

Dart WebDriver client

Installing

  1. Depend on it

    Add this to your package's pubspec.yaml file:

    dependencies:
      webdriver: any
    

    If your package is an application package you should use any as the version constraint.

  2. Install it

    If you're using the Dart Editor, choose:

    Menu > Tools > Pub Install
    

    Or if you want to install from the command line, run:

    $ pub install
    
  3. Import it

    Now in your Dart code, you can use:

    import 'package:webdriver/webdriver.dart';