FindElements() public method

public FindElements ( By @by ) : ReadOnlyCollection
@by By
return ReadOnlyCollection
 public ReadOnlyCollection <IWebElement> FindElements(By @by)
 {
     WebDriverManager.TestWebDriver.LogMessage(LogLevel.Verbose, $"Finding elements by: [{@by}] from " + _selfSelector);
     return(_context.FindElements(@by));
 }
Exemplo n.º 2
0
 public ReadOnlyCollection <IWebElement> FindElements(By @by)
 {
     return(_context.FindElements(@by));
 }