===
open form page
%require
===
plwr -S plwr-test open "http://localhost:8599/form.html"
---

===
type into a regular input
===
plwr -S plwr-test click '#name'
plwr -S plwr-test type 'Bob'
plwr -S plwr-test input-value '#name'
---
Bob

===
type into contenteditable
===
plwr -S plwr-test click '#editable'
plwr -S plwr-test type 'hello world'
plwr -S plwr-test text '#editable'
---
hello world

===
type with delay
===
plwr -S plwr-test fill '#name' ''
plwr -S plwr-test click '#name'
plwr -S plwr-test type 'hi' --delay 50
plwr -S plwr-test input-value '#name'
---
hi
