Clipboard
Retrieve/insert copied text from/into the clipboard
Actions
Get Clipboard Data
When using this function, I retrieve data from the clipboard and then can assign that value to tables, variables, and subsequently use the tables, variables in the process. Typically, I use this function in some processes where the full value is not displayed for retrieval, requiring the use of the copy command on the page.
- Assign to Variable
Assign the value to a variable
- Variable Name
The name of the variable to assign the value to
- Insert into Table
Insert the value into a column in a table
- Select Column
The column where the value is inserted.
Example
I can use the function in cases like the following.
For example, here I need to click on this icon to copy the wallet address
After clicking it, the wallet address is saved to the clipboard. To retrieve that value, I configure the Clipboard
node as follows
The result returned will be as follows
- The value assigned to the
address
variable is the value I just saved to the clipboard. Now I can use that variable in the process
Insert Text into Clipboard
When selecting this option, I can insert a value into the clipboard. I typically use this function when I want to fill in a common value for all profiles.
Text: The text to insert into the clipboard
Copy selected text on the page: Option to copy the selected text on the page into the clipboard.
Example
I can use the function in cases like the following.
For example, here I want to assign a value to the clipboard to use across all profiles. Therefore, I configure the Clipboard
node as follows
Then I can insert that data into a variable for use by configuring it as follows
The result returned will be as follows
- The value assigned to the
text
variable is the value I just saved to the clipboard. Now I can use that variable in the process