Esempio n. 1
0
        public ICollection <IElement> FindMultiple(string selector)
        {
            var command  = new FindMultipleCommand(selector);
            var elements = _performer.PerformAndReturn(command);

            return(elements);
        }
Esempio n. 2
0
        public FluentSessionRecorder FindMultiple(string selector, out ICollection <IElement> elements)
        {
            var command = new FindMultipleCommand(selector);

            elements = _performer.PerformAndReturn(command);

            return(this);
        }
Esempio n. 3
0
 public void SetUp()
 {
     _defaultCommand = new FindMultipleCommand(DefaultSelector);
 }