Conditions
Conditions can be used:
To search and filter rows in spreadsheets using commands like Find Spreadsheet Row and Loop Spreadsheet Rows
To verify results and create end-to-end tests using Assert
Element
Element is visible
Value: Selector for the element to check for visibility
Element is hidden
Value: Selector for the element to check for visibility
Basic
Is empty
Is not empty
Text
Text comparisons are case-insensitive.
Text contains
Text does not contain
Text starts with
Text ends with
Text is exactly
Numbers
Greater than
Greater than or equal to
Less than
Less than or equal to
Is equal to
Is not equal to
Spreadsheets
Row number exists
Row number does not exist
Code
Code
Value: Javascript expression that evaluates to either
true
orfalse
(e.g.1 === 2
)
Last updated