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

GetElements() private method

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

			return Tag.FindElements(by);
		}