Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ Gets your user information
api.getUserInfo(function(error, userInfo) {});
```

### updateUserInfo
Updates your user information

```javascript
api.updateUserInfo(newUserdata, function(error, userInfo) {});
```

### getTests
Gets list of your latest tests

Expand Down Expand Up @@ -181,14 +188,14 @@ api.getAuthenticationHashForSharing(sessionId);
Takes screenshots for the specific browsers

```javascript
api.getUserInfo(function(error, screenshots) {}, url, browsers, waitTime, resolution, fullPage, callbackURL);
api.takeScreenshot(function(error, screenshots) {}, url, browsers, waitTime, resolution, fullPage, callbackURL);
```

### retrieveScreenshots
Retrieves screenshots for a specific `takeScreenshot` call

```javascript
api.getUserInfo(screenshotId, function(error, screenshots) {});
api.retrieveScreenshots(screenshotId, function(error, screenshots) {});
```

### getScreenshotList
Expand Down