Skip to main content Skip to docs navigation

Now you can paste content into input fields which are copied by extension using copy command within same domain.

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) → d

Paste::charAt(4)

Same as at(4)

'The quick brown fox jumps over the lazy dog.'.charAt(4) → q

Paste::concat("World")

Concatenate strings

'Hello'.concat(' ', 'World') → Hello World

Paste::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, monkeyma

Paste::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] → fox

Paste::substring(1, 3)

Substring from 1 to 3 (exclusive)

'ABCDE'.substring(1, 3)BC

Paste::toLowerCase()

Lowercase

'Auto Clicker AutoFill'.toLowerCase() → auto clicker autofill

Paste::toUpperCase()

Uppercase

'Auto Clicker AutoFill'.toUpperCase()AUTO CLICKER AUTOFILL