Exemplo n.º 1
0
 public void WhenEnteringForTheElementRowEnglish(RowSelectorPrefix row, ResolvedString text, SettableElementSelector selector)
 => base.WhenEnteringForTheElementRow(row, text, selector);
Exemplo n.º 2
0
 public void ThenForRowTheElementHasTheValueEnglish(RowSelectorPrefix prefix, ActiveElementSelector selector, WebValidation validation)
 => base.ThenForRowTheElementHasTheValue(prefix, selector, validation);
Exemplo n.º 3
0
 public void WhenSelectingTheElementRowEnglish(RowSelectorPrefix row, ActiveElementSelector selector)
 => base.WhenSelectingTheElementRow(row, selector);
Exemplo n.º 4
0
 public WebDriver ForRow(RowSelectorPrefix row)
 => Prefix(row);
Exemplo n.º 5
0
 public void ThenForRowTheElementHasTheValue(RowSelectorPrefix prefix, ActiveElementSelector selector, WebValidation validation)
 => WebDriver.ForRow(prefix).Select(selector).Validate(validation);
Exemplo n.º 6
0
 protected virtual void WhenClickingTheElementRow(RowSelectorPrefix row, ActiveElementSelector selector)
 => Executor.Execute(()
                     => WebDriver.ForRow(row).Select(selector).Click());
Exemplo n.º 7
0
 protected virtual void WhenEnteringForTheElementRow(RowSelectorPrefix row, ResolvedString text, ActiveElementSelector selector)
 => Executor.Execute(()
                     => WebDriver.ForRow(row).Select(selector).Enter(text));
Exemplo n.º 8
0
 public void WhenSelectingTheElementRow(RowSelectorPrefix row, ActiveElementSelector selector)
 => Executor.Execute(()
                     => WebDriver.ForRow(row).Select(selector).Select());
Exemplo n.º 9
0
 public new void WhenEnteringForTheElementRow(RowSelectorPrefix row, ResolvedString text, ActiveElementSelector selector)
 => base.WhenEnteringForTheElementRow(row, text, selector);
Exemplo n.º 10
0
 public new void WhenClickingTheElementRow(RowSelectorPrefix row, ActiveElementSelector selector)
 => base.WhenClickingTheElementRow(row, selector);