Skip to content

Type Text

Type: page-type  ·  Package: Browser v1.0.0

Write text character by character, simulating real keystrokes. It is slower than Fill Field, but generates an event per key — necessary when the page reacts to typing: autocompletes that show suggestions, masked fields, search engines that filter live.

Focuses on the field indicated by the selector and types the text letter by letter, with an optional pause (delay) between keys. Unlike Fill Field, it does not delete the content first: it writes from where the cursor is.

ParameterEditorDescription
selectorselectorThe field where to type.
textexpressionThe text to type. Supports expressions.
ParameterEditorDescription
pagesessionThe page session. Omit it inside a body; outside, pass = page.
delaynumberPause between keys in ms (e.g. 50). Higher = more “human” and reliable on sensitive pages.
timeoutnumberMaximum ms to wait for the element. By default 30000.

Write in a search engine with autocomplete and then choose the suggestion:

Page Type selector = (#busquedaCiudad) text = "Bogotá" delay = 80
Page Wait For selector = (.sugerencia) state = visible
Page Click selector = (.sugerencia)
  • Fill Field — write quickly, in one go.
  • Key Press — enviar teclas especiales (Enter, Tab, atajos).