Giter Club home page Giter Club logo

tagui's Introduction

TagUI

TagUI is a command-line tool for digital process automation (RPA)

Write flows in simple TagUI language and automate your web, mouse and keyboard interactions on the screen.

TagUI is free to use and open-source. It's easy to setup and use, and works on Windows, macOS and Linux.

In TagUI language, you use steps like click and type to interact with identifiers, which include web identifiers, image snapshots, screen coordinates, or even text using OCR. Below is a sample flow to download a report:

https://www.typeform.com

click login
type username as [email protected]
type password as 12345678
click btnlogin

download https://admin.typeform.com/xxx to report.csv
// besides web identifiers, images of UI elements can be used
click login_button.png
type username_box.png as [email protected]
// (x,y) coordinates of user-interface elements can also be used
click (1200,200)
type (800,400) as [email protected]

v6 Features

TagUI live mode

You can run live mode directly for faster development by running tagui live on the command line.

Click text using OCR

TagUI can now click on the screen with visual automation just using text input, by using OCR technology.

click v6 Features using ocr

Deploy flows to run when double clicked

You can now create a shortcut for a flow, which can be moved to your desktop and double-clicked to run the flow. The flow will be run with all the options used when creating the shortcut.

$ tagui my_flow.tag -deploy
OR
$ tagui my_flow.tag -d

Running flows with options can be done with abbreviations

For example, you can now do tagui my_flow.tag -h instead of tagui my_flow.tag -headless.

Migrating to v6

Mandatory .tag file extension

All flow files must have a .tag extension.

Options must be used with a leading hyphen (-)

When running a flow with options, prefix a - to the options.

Before v6:

$ tagui my_flow.tag headless

After v6:

$ tagui my_flow.tag -headless
OR
$ tagui my_flow.tag -h

Change in syntax for echo, dump, write steps

The echo, dump and write steps are now consistent with the other steps. They no longer require quotes surrounding the string input. Instead, variables now need to be surrounded by backticks.

Before v6:

echo 'This works!' some_text_variable

After v6:

echo This works! `some_text_variable`

if and loop code blocks can use indentation instead of curly braces {}

This increases readability and ease of use. Just indent your code within the if and loop code blocks.

Before v6:

if some_condition
{
do_some_step_A
do_some_step_B
}

After v6:

if some_condition
  do_some_step_A
  do_some_step_B

TagUI v5.11

Credits

This project is supported by the National Research Foundation, Singapore under its AI Singapore Programme (AISG-RP-2019-050). Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not reflect the views of National Research Foundation, Singapore.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.