Exemplo n.º 1
0
 public new IWebElement FindElementByName(string name)
 {
     return(WrapElementIfRemote_(webElement_.FindElementByName(name)));
 }
Exemplo n.º 2
0
 /// <summary>
 ///       Finds the first of elements that match the name supplied
 ///       </summary>
 /// <param name="name">Name of the element</param>
 /// <returns>IWebElement object so that you can interact that object</returns>
 /// <example>
 ///   <code>
 ///       IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
 ///       elem = driver.FindElementsByName("name")
 ///       </code>
 /// </example>
 public IWebElement FindElementByName(string name)
 {
     return(DecoratedWebElement.FindElementByName(name));
 }