Skip to content

Commit

Permalink
Readme fixes (Sauce Labs name)
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Sep 14, 2010
1 parent 6175f27 commit dff5a60
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Readme.md
Expand Up @@ -5,7 +5,7 @@

## Features

- Saucelabs integration
- Sauce Labs integration
- Optional chaining API to prevent callback nesting

## Actions
Expand Down Expand Up @@ -49,17 +49,17 @@ When chaining successful commands may receive a callback, which is useful for cu
if (err) throw err;
})

## Saucelab Videos & Logs
## Sauce Labs Videos & Logs

When a job is complete, you can request the log or flv video from saucelabs. To access the url for these resources you may use `SauceClient#videoUrl` or `SauceClient#logUrl`, for example:
When a job is complete, you can request the log or flv video from Sauce Labs. To access the url for these resources you may use `SauceClient#videoUrl` or `SauceClient#logUrl`, for example:

...
.end(function(err){
console.log(this.videoUrl)
console.log(this.logUrl)
})

Saucelabs also provides a script that you may embed in your CI server to display the video, accessible via `SauceClient#video`, which will yield something similar to:
Sauce Labs also provides a script that you may embed in your CI server to display the video, accessible via `SauceClient#video`, which will yield something similar to:

<script src="http://saucelabs.com/video-embed/<job-id>.js?username=<username>&access_key=<access-key>"/>

Expand Down Expand Up @@ -91,7 +91,7 @@ Saucelabs also provides a script that you may embed in your CI server to display
});


## Saucelabs Example
## Sauce Labs Example

var soda = require('./index')
, assert = require('assert');
Expand Down Expand Up @@ -149,7 +149,7 @@ Keep in mind you can extend the prototype as needed for your test. An example of

## More Information

- Saucelabs [Supported Browsers](http://saucelabs.com/products/docs/sauce-ondemand/browsers)
- Sauce Labs [Supported Browsers](http://saucelabs.com/products/docs/sauce-ondemand/browsers)
- Introduction to [Selenese](http://seleniumhq.org/docs/02_selenium_basics.html)
- Selenium [Command Reference](http://release.seleniumhq.org/selenium-core/0.8.0/reference.html).

Expand Down

0 comments on commit dff5a60

Please sign in to comment.