This Repo. is forked from open-rpa/openrpa, containing illustrated tutorial of Open Source Robotic Process Automation Software (OpenRPA). Basic concept is right below this README, and tutorials of tool usage are in the folder "Tool Usage". There're also some little project as example in the folder "Pikas' Side Project".
Download and try OpenRPA here 💾here
Workflow is an execution file in OpenRPA, which can be shared by exporting to json file.
Project is the container of wolkflows, just like folders in Windows & macOS.
When the computer loses control due to the bad design of a workflow, the key to stop excuting it forcefully is called "Cancel Key", which can be edit in Settings (default is ESC key).
-
String means words, supposed to be framed by 2 double quotes (e.g.
"Hello World"). Multiple strings can be merged by operator+(e.g."Hello" + " World"). Double quotes of a string aren't used or displayed while excuting, their exsistence is just for letting computers know it's a string.. Therefore, the result of"Hello" + " World"isn'tHello"" WorldbutHello World. When putting double quotes which are goning to be used, escape characters\must be put before (e.g."Hello \"Tom\""). BTW, some variable types can be convert into string by certain methods like.ToStringorConvert.ToString()(e.g.100.ToString). -
Intis a fundamental variable type that stands for integer, which means it can store number. Besides, it's signed, so it can represent both positive and negative values. -
Booleanis a fundamental variable type that represents a binary value, which has two possible states:TrueorFalse. They are usually used to express the outcome of logical comparisons and decisions within a program. To toggle a boolean variable,notshould be add before (e.g.not isChecked). -
In the context of web development,
Elementrefer to the building blocks or components that make up a web page's structure and content. They're defined by HTML (Hypertext Markup Language) and also the fundamental components that browsers use to interpret and display web pages. In OpenRPA, they can be get by the toolGet Elementas a local variableitem, which has a lot of useful properties and method (e.g.item.Weight,item.Height,item.Value...etc.)
