CBA

Chromium Browser Automation (extension for chrome browser automation)

change

Change action uses CSS selector to find relevant user input element and changes it's content.

Change action can be used on selectboxes, various textboxes(text, email and more), textareas and contenteditable elements, they are focusing the element, changing the value and triggerring change events.

See website registration demo.

Placeholders

unique

<$unique=> - placeholder is generating random number (1-13 characters length) depending of the value. In example below the change action is used to find Dom Element with the ID of #sometextBox and change the value to hello concatenated with 3 charecter length random number (i.e. Hello123).

#someTextBox
Hello<$unique=3>

clipboard

<$clipboard=> - Clipboard placeholder is used to access clipboard object data. Which means that you can access data saved previously in clipboard object to update input value:

<$clipboard=name>

so this placeholder will access value of the name property from the clipboard object(i.e. clipboard["name"]).:

#chatBox
Mr.<$clipboard=name>