This code snippet return a function:
require('browserstack').createClient({username:'u',password:'p'}).getLatest
But these returns undefined:
require('browserstack').createAutomateClient({username:'u',password:'p'}).getLatest
require('browserstack').createScreenshotClient({username:'u',password:'p'}).getLatest
I'm using createAutomateClient to filter out browsers which won't be possible to connect to using Selenium WebDriver, but would also like to just be able to test the latest.
This code snippet return a function:
But these returns undefined:
I'm using
createAutomateClientto filter out browsers which won't be possible to connect to using Selenium WebDriver, but would also like to just be able to test the latest.