Clipboard
Now you can copy any content from webpage using copy command and paste back any where within clipboard.
Copy to Clipboard
Action
Element Finder | Value |
---|---|
Clipboard::Copy::[\d]6
Clipboard::Copy::[\\d]{6}
<div>OTP: 123456</div> → Clipboard: 123456
Clipboard::Copy::[.]6
Any six characters (literal dot used inside character class)
<div>dots: ......</div> → Clipboard: ......
Clipboard::Copy::[.]+
One or more literal dots
<div>path: a..b</div> → Clipboard: ..
Clipboard::Copy::[a-z]6
Six lowercase letters (a–z)
<div>code: nature</div> → Clipboard: nature
Clipboard::Copy::[A-Z]6
Six uppercase letters (A–Z)
<div>code: MONKEY</div> → Clipboard: MONKEY
Clipboard::Copy::[\w]6
Six word characters (letters, digits, or underscore)
<div>id: A1B2C3X</div> → Clipboard: A1B2C3
Paste from Clipboard
Action
Element Finder | Value |
---|---|
<clipboardPaste>
Replaces with the current clipboard content. You can use <clipboardPaste>
anywhere within your text, and it will be replaced with the clipboard value. Supports multiple replacements in the same string
Hello <clipboardPaste> World <clipboardPaste>! → Hello copiedText World copiedText!
Clipboard::Paste::
Paste the current clipboard content or the value copied using Clipboard::copy::
Clipboard::Paste:: → copiedText!
Clipboard::Paste::at(5)
Character at position 5
'The quick brown fox jumps over the lazy dog.'.at(5) → u; at(-4) → d
Clipboard::Paste::charAt(4)
Same as at(4)
'The quick brown fox jumps over the lazy dog.'.charAt(4) → q
Clipboard::Paste::concat("World")
Concatenate strings
'Hello'.concat(' ', 'World') → Hello World
Clipboard::Paste::match(/^[A-Z]/g)
Regex match
'The quick brown fox jumps. It barked.'.match(/[A-Z]/g) → ["T","I"]
Clipboard::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.
Clipboard::Paste::replaceAll("dog", "monkey")
Replace all occurrences
'dog, hotdog, dogma'.replaceAll('dog', 'monkey') → monkey, hotmonkey, monkeyma
Clipboard::Paste::slice(31)
Slice substring by indices
'The quick brown fox jumps over the lazy dog.'.slice(31) → the lazy dog.
Clipboard::Paste::split(" ")
Split by space
'The quick brown fox jumps over the lazy dog.'.split(' ')[3] → fox
Clipboard::Paste::substring(1, 3)
Substring from 1 to 3 (exclusive)
'ABCDE'.substring(1, 3) → BC
Clipboard::Paste::toLowerCase()
Convert to lower case
'Auto Clicker AutoFill'.toLowerCase() → auto clicker autofill
Clipboard::Paste::toUpperCase()
Convert to upper case
'Auto Clicker AutoFill'.toUpperCase() → AUTO CLICKER AUTOFILL
Clipboard::Paste::trim()
Trim both ends
' Auto Clicker AutoFill '.trim() → Auto Clicker AutoFill
Clipboard::Paste::trimStart()
Trim start only
' Auto Clicker AutoFill'.trimStart() → Auto Clicker AutoFill
Clipboard::Paste::trimEnd()
Trim end only
'Auto Clicker AutoFill '.trimEnd() → Auto Clicker AutoFill