Added in v3.4.3View on GitHub
Paste
Now you can paste content into input fields which are copied by extension using copy command within same domain.
On this page
Try it yourself: download the copy-paste.json example automation, import it via Automations → Import, then open test.getautoclicker.com to watch it run. Watch copied values (full and regex-filtered) get pasted into other fields.
Action
| Element Finder | Value |
|---|---|
Paste::
Paste the content copied using the copy command
Paste:: → copiedText!<paste>
Placeholder that expands to the last copied value
Hello <paste> World <paste>! → Hello copiedText World copiedText!Paste::at(5)
Return character at position 5
'The quick brown fox jumps over the lazy dog.'.at(5) → u; at(-4) → dPaste::charAt(4)
Same as at(4)
'The quick brown fox jumps over the lazy dog.'.charAt(4) → qPaste::concat("World")
Concatenate strings
'Hello'.concat(' ', 'World') → Hello WorldPaste::match(/^[A-Z]/g)
Regex match
'The quick brown fox jumps. It barked.'.match(/[A-Z]/g) → ["T","I"]Paste::replace("dog", "monkey")
Replace first occurrence
'The quick brown fox jumps over the lazy dog.'.replace('dog', 'monkey') → The quick brown fox jumps over the lazy monkey.Paste::replaceAll("dog", "monkey")
Replace all occurrences
'dog, hotdog, dogma'.replaceAll('dog', 'monkey') → monkey, hotmonkey, monkeymaPaste::slice(31)
Slice from index 31
'The quick brown fox jumps over the lazy dog.'.slice(31) → the lazy dog.Paste::split(" ")
Split by space
'The quick brown fox jumps over the lazy dog.'.split(' ')[3] → foxPaste::substring(1, 3)
Substring from 1 to 3 (exclusive)
'ABCDE'.substring(1, 3) → BCPaste::toLowerCase()
Lowercase
'Auto Clicker AutoFill'.toLowerCase() → auto clicker autofillPaste::toUpperCase()
Uppercase
'Auto Clicker AutoFill'.toUpperCase() → AUTO CLICKER AUTOFILL