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

GetElement() private method

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

			return Tag.FindElement(by);
		}