Environment editor

Step-by-step instructions for creating custom Robot tasks with the built-in environment editor.

  1. The environment editor is in editor/editor.py. Download the module archive from GitHub Releases and from the unpacked archive run:

    python editor/editor.py
  2. Create as many environments as the task needs.

    Environment editor.
    Environment editor.
  3. Save the task file to the robot/tasks folder.

  4. In your Python program, call task() with the file name without the .env extension.

    from robot import *
    
    task("robot")

Note

The editor saves task conditions (todoText) as a plain string, or edits one locale at a time when the file already contains localized text. To manage every translation, edit the file manually.

The editor can set solution constraints (toolbar constraints button):