Exemplo n.º 1
0
 public static void OpenedPageWithBody(string html)
 {
     Given.OpenedEmptyPage();
     When.WithBody(html);
 }
Exemplo n.º 2
0
 public static void OpenedPageWithBody(string html, IWebDriver driver)
 {
     Given.OpenedEmptyPage(driver);
     When.WithBody(html, driver);
 }
Exemplo n.º 3
0
 public static void OpenedPageWithBodyTimedOut(string html, double timeout)
 {
     Given.OpenedEmptyPage();
     When.WithBodyTimedOut(html, timeout);
 }