RemoteWebDriver FindElementsByName Method WebDriver
Finds a list of elements that match the name supplied

Namespace: OpenQA.Selenium.Remote
Assembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public ReadOnlyCollection<IWebElement> FindElementsByName(
	string name
)

Return Value

ReadOnlyCollect of IWebElement objects so that you can interact that object

Implements

IFindsByName FindElementsByName(String)
Examples

IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox());
ReadOnlyCollection<IWebElement> elem = driver.FindElementsByName("name")
See Also