Bumblebee.Implementation.Block.FindElements C# (CSharp) Method

FindElements() public method

public FindElements ( By by ) : IList
by OpenQA.Selenium.By
return IList
		public IList<IWebElement> FindElements(By by)
		{
			if (Tag == null)
			{
				throw new NullReferenceException("You can't call GetElements on a block without first initializing Tag.");
			}

			return Tag.FindElements(by);
		}