Skip to content

Commit

Permalink
Update 02_Wrapper_over_UiAutomator.md
Browse files Browse the repository at this point in the history
  • Loading branch information
matzuk authored Feb 10, 2020
1 parent a79c8ff commit 7f6519e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion wiki/02_Wrapper_over_UiAutomator.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ val uiObject = uiDevice.wait(
uiObject.text = "Kaspresso"
assertEquals(uiObject.text, "Kaspresso")
```
This is an example just to input and check the text. Because we have a successful experience of Kakao using we decided to wrap UI Automator over in the same manner and called it **Kautomator**.
This is an example just to input and check the text. Because we have a successful experience of Kakao using we decided to wrap UI Automator over in the same manner and called it **Kautomator**:
```kotlin
MainScreen {
simpleEditText {
replaceText("Kaspresso")
hasText("Kaspresso")
}
}
```

Another big advantage of **Kautomator** is a possibility to accelerate UI Automator. <br>
Have a glance at video below:
Expand Down

0 comments on commit 7f6519e

Please sign in to comment.