FindElements() 공개 메소드

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