Public Vars

Back

fill (clj)

(source)

function

(fill driver q text & more)
Have `driver` fill input element found by `q` with `text` (and optionally `more` text). See [[query]] for details on `q`. Example: ```Clojure (fill driver :simple-input "foo" "baz" 1) ;; fills the input with text: foobaz1 ```

Examples