Example #1
0
 public RWebElementCollection(AutomationManager automationManager, BaseElementFinder <ReadOnlyCollection <IWebElement> > context)
 {
     _context           = context;
     _automationManager = automationManager;
 }
Example #2
0
 public RWebElementCollection(AutomationManager automationManager, By locator, [CallerMemberName] string name = "")
 {
     Name               = name;
     _context           = new ElementsFinder(locator, name, automationManager.Driver);
     _automationManager = automationManager;
 }