Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 871 Bytes

inputtext.md

File metadata and controls

33 lines (24 loc) · 871 Bytes

inputText

Inputs text (regardless of whether any text field is currently focused or not)

- inputText: "Hello World"

{% hint style="warning" %} Unfortunately unicode characters are not supported yet in Android platform. Follow the GitHub issue for status updates. {% endhint %}

Input random text

There are several convenience methods for entering a random text input:

- inputRandomEmail       # Enters a random Email address
- inputRandomPersonName  # Enters a random person name
- inputRandomNumber      # Enters a random integer number
- inputRandomText        # Enters random unstructured text

Length

You can pass length as argument for Number and Text

- inputRandomNumber:
    length: 10  #(default: 8)
- inputRandomText:
    length: 10  #(default: 8)