Пример #1
0
 public void GivenIOpenTheIndexPage()
 {
     // Goes to index page and sleeps the thread for a while to give a
     // chance for the Blazor page to load
     ActionWaits.PageWait(() => indexPage.OpenIndexPage());
 }
Пример #2
0
 public void GivenIClickTheNextPageButton()
 {
     ActionWaits.PageWait(() => _indexPage.NextPageButton.Click());
 }
Пример #3
0
 public void GivenIClickTheThumbnailForPage(int p0)
 {
     ActionWaits.PageWait(() => _indexPage.Thumbnails.ElementAt(p0).Click());
 }
 public void GivenIClickTheZoomDecreaseButton()
 {
     ActionWaits.PageWait(() => _indexPage.ZoomOutButton.Click());
 }