Last active
February 15, 2017 06:01
-
-
Save chomado/6598a72d798e90f57551595b6fa6a3c8 to your computer and use it in GitHub Desktop.
UITest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 『UserText』というIDの振られたテキストフォームに『テスト入力です』と入力する | |
app.EnterText(c => c.Marked("UserText"), "テスト入力です"); | |
// 『UserText』というIDの振られたテキストフォームの入力文字列を空にする | |
app.ClearText("UserText"); | |
// 『UserText』というIDの振られたテキストフォームに『テスト入力2』と入力する | |
app.EnterText(c => c.Marked("UserText"), "テスト入力2"); | |
// 『LoginButton』というIDのボタンをタップする | |
app.Tap(c => c.Marked("LoginButton")); | |
// スクショを『Login Error』というタイトルで撮る | |
app.Screenshot("Login Error"); | |
//. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment