About Python Add-on Python is an interpreted, high-level, general-purpose programming la nguage. With the help of python add-on we can use the features of python language in G1ANT. How to install Python Add-on ? In order to install the Python Add-on follow the steps : Open G1ANT.robot Go to Tools Then go to Marketplace Select the python add-on Click on install button How to use ? Python add-on might be in development stage so we cant access the commands and structures of the python add-on. But there are various ways from which we can access the python through G1ANT. By using program command we can call python console and with the help of keyboard command we can enter the desired code. Scripts written using above command are uploaded on GitHub. Click this link
About Language Add-on Language Add-on is the most important as well as most useful add-on on G1ANT.robot. This add-on contains mostly structures like list, dictionary etc. We don't need to import this add-on externally, this add-on automatically imported on new script. Language Add-on consist of various commands and structure. Commands - 1) end = This command ends a command block started with the following commands: for , while , foreach, if , procedure, try 2) error = This command allows error handling using variables of error structure. Structure - 1)bool = This structure is used for variables storing the Boolean values: `true` and `false` 2)datatable = The datatable structure stores information about array of arrays. 3)date = The date structure stores information about the date in the following fields 4)datetime = The datetime structure stores information about date and time in the following fields 5)htm...