Esempio n. 1
0
 public void WhenPress(string label, string role) =>
 WebBrowser.FindByAria(label, role)
 .Click();
Esempio n. 2
0
 public void ThenTextShouldAppear(string text, string label, string role) =>
 Assert.AreEqual(
     text,
     WebBrowser.FindByAria(label, role).Text);
Esempio n. 3
0
 public void WhenFillValue(string label, string role, string value) =>
 WebBrowser.FindByAria(label, role)
 .SendKeys(value);