Set Google Play Store credentials
You can access Google Play Store on BrowserStack devices to test scenarios such as :
- Test Google in-app purchase flows
- Test accepting payments using Google Pay
- Test production version of your apps by downloading it from Google Play Store
In order to do so, use the browserstack.appStoreConfiguration
capability to pass your own credentials for Google Play Store login :
Capability | Description | Values |
---|---|---|
browserstack.appStoreConfiguration |
Set credentials for Google Play Store login | {“username” : “play-store-email”, “password” : “play-store-password”} |
Example:
desired_caps = {
'browserstack.appStoreConfiguration': '{"username":"your_email", "password":"your_password"}'
}
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("browserstack.appStoreConfiguration", new HashMap{String, String}(){ put("username", "your_email"); put("password", "your_password");});
var capabilities = {
'browserstack.appStoreConfiguration': '{"username":"your_email", "password":"your_password"}'
}
DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability("browserstack.appStoreConfiguration", "{"username":"your_email", "password":"your_password"}");
$capabilities = new DesiredCapabilities();
$capabilities->setCapability("browserstack.appStoreConfiguration", array("username" => "your_email", "password" => "your_password"));
Note: Your Play Store credentials are secure as we wipe the devices clean at the end of your test session
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!