Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created November 29, 2015 12:13
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/baf262e9d82270447858 to your computer and use it in GitHub Desktop.
Save angelovstanton/baf262e9d82270447858 to your computer and use it in GitHub Desktop.
public void ChangePageSize(int newSize)
{
string jsToBeExecuted = this.GetGridReference();
jsToBeExecuted = string.Concat(jsToBeExecuted, "grid.dataSource.pageSize(", newSize, ");");
this.driver.ExecuteScript(jsToBeExecuted);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment