Currently android uiautomator library doesn't support Toast and PopupWindow,this library used to support android ui automaton such as identify Toast and PopupWindow
- Tags: Appium, uiautomator, Toast, PopupWindow, Automation, Test,Android
- Identify Toast
- Identify PopupWindow
- Highlight Element
dependencies {
compile 'com.github.lwfwind.automation:android-automation-library:2.1'
}public class MyApplication extends MultiDexApplication {
public void onCreate() {
super.onCreate();
//automation
if (EnvConfig.currentEnv() != EnvConfig.ENV_MASTER) {
AutomationServer.startListening(this);
}
}
}