Accessibility related actions and events for android automation app called Tasker
Requires Java Code action available on v6.6
Use text to build our automation, like AutoHotkey or AutoInput Action V2
Open Youtube today feed
openApp("Youtube");
click("Subscription");
click("Today");Open reddit on secondary display and scroll to r/tasker
setDisplay(21); // or setDisplay("scrcpy");
openApp("Reddit");
node = scrollTo("r/tasker");
click(node);
React on click.
a11Y.set();
myEvent() {
String PackageName = "net.dinglisch.android.taskerm";
Source() {
String ViewIdResourceName = "net.dinglisch.android.taskerm:id/button_add_action";
return this;
}
onViewClicked(Object event) {
click("Filter");
}
return this;
}
String myEvent = myEvent();
String eventName = "Tasker add action";
a11Y.addEvent(eventName, myEvent);
Highlight certain actions and maps the entire UI.
v3.mp4
Create and test UI automation script by choosing through dialogs.
o7qqpm.mp4