Skip to content

Commit

Permalink
README: Add example for App Automate
Browse files Browse the repository at this point in the history
Closes gh-67
  • Loading branch information
smuralidharan authored and scottgonzalez committed Apr 8, 2020
1 parent 5e634fc commit 0805be1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions readme.md
Expand Up @@ -35,6 +35,15 @@ automateClient.getBrowsers(function(error, browsers) {
console.log(browsers);
});

// App Automate API
// Show the upload builds for mobile app automation
var appAutomateClient = BrowserStack.createAppAutomateClient(browserStackCredentials);

appAutomateClient.getBuilds(function(error, builds) {
console.log("The following builds are available for app automated testing");
console.log(builds);
});

// Screenshots API
var screenshotClient = BrowserStack.createScreenshotClient(browserStackCredentials);

Expand Down

0 comments on commit 0805be1

Please sign in to comment.