Created
May 7, 2018 23:19
-
-
Save PulkitSethi1984/3fafa8af1516dc216327ced9c26024cf to your computer and use it in GitHub Desktop.
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
[TestFixture(Platform.Android)] | |
[TestFixture(Platform.iOS)] | |
public class ItemListTest : BaseTest | |
{ | |
public ItemListTest(Platform platform) : base(platform) | |
{ } | |
[Test] | |
public void ItemListBasicTest() | |
{ | |
LoadApiData("TestRecording"); | |
var searchScreen = new SearchScreenView(_app); | |
var itemList = searchScreen. | |
EnterSearchTerm("ram"). | |
StartSearch(). | |
MoveToAnimeListView(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment