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