- After installing .apk file on android device
- In app msg card will be displayed on screen
- without closing this in app msg we are not able to run further automation sequence
Note : I am using browserstack for app automation
Note : I am using browserstack for app automation
Pop-ups are enabled by default in browserstack for Chrome (as the pop-up blocker is disabled, by default).
You can disable it:
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("excludeSwitches",Arrays.asList("disable-popup-blocking"));
caps.setCapability(ChromeOptions.CAPABILITY, options);