Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created April 8, 2016 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/7951904240d042458a39f75fd1a47d7c to your computer and use it in GitHub Desktop.
Save angelovstanton/7951904240d042458a39f75fd1a47d7c to your computer and use it in GitHub Desktop.
public interface IGridPage
{
KendoGrid Grid { get; }
IWebElement PagerInfoLabel { get; set; }
IWebElement GoToNextPage { get; set; }
IWebElement GoToFirstPageButton { get; set; }
IWebElement GoToLastPage { get; set; }
IWebElement GoToPreviousPage { get; set; }
IWebElement NextMorePages { get; set; }
IWebElement PreviousMorePages { get; set; }
IWebElement PageOnFirstPositionButton { get; set; }
IWebElement PageOnSecondPositionButton { get; set; }
IWebElement PageOnTenthPositionButton { get; set; }
void NavigateTo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment