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

FindElement() public method

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

			return Tag.FindElement(by);
		}