Created
April 28, 2016 21:07
-
-
Save mallibone/087161f91e644874b92e5bb94bfcd626 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[Test] | |
public void EnterAndSubmitText_ItAppearsInTheSubmittedTextLabel() | |
{ | |
app.EnterText(q => q.Marked("InputMessageEntry"), "Hello from Xamarin Test Cloud"); | |
app.Screenshot("Has entered text"); | |
app.Tap(q => q.Marked("SubmitMessageButton")); | |
app.Screenshot("Has taped the submit button."); | |
Assert.IsFalse(string.IsNullOrEmpty(app.Query(q => q.Marked("SubmittedMessageLabel")).First().Text)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment