Compares two values and outputs TRUE if the first is greater than or equal to the second.
The GE instruction performs a greater than or equal comparison. It evaluates whether one value is larger than or equal to another and writes the boolean result to the target variable.
Use GE instead of GT when you want the comparison to also succeed when the values are exactly equal.
{GIF:HERE} - [Screenshot showing the GE (Greater Than or Equal) instruction configuration in the visual editor, with the action set on a step and instruction type set to GE for a boolean comparison variable]
from automation_machine import ActionInstruction
step.add_action("variable_name", "Description", instruction=ActionInstruction.GE)
self.add_step())ActionInstruction.GE