Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

135 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The codes in this repo were mainly generated with the assistance of AI tools.

 

Accessibility Action

Accessibility related actions and events for android automation app called Tasker

Downloads Stable Beta

Requires Java Code action available on v6.6

 

Features

1. Syntax based UI automation actions

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);

 

2. Debug highlighter & UI inspector

Highlight certain actions and maps the entire UI.

v3.mp4

 

3. Script builder

Create and test UI automation script by choosing through dialogs.

o7qqpm.mp4

 

 

FAQ

  1. What is a11Y?
  2. Why this won't work on some screen?
  3. How to use this wihtout taskernet project?

About

Accessibility related actions and events using Java code for Tasker

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages