Finds a list of elements that match the class name supplied
Namespace: OpenQA.Selenium.RemoteAssembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax
public ReadOnlyCollection<IWebElement> FindElementsByPartialLinkText( string partialLinkText )
Parameters
- partialLinkText
- Type:
System String
part of the link text
Return Value
ReadOnlyCollection<IWebElement> objects so that you can interact that objectImplements
IFindsByPartialLinkText FindElementsByPartialLinkText(String)Examples
IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); ReadOnlyCollection<IWebElement> elem = driver.FindElementsByPartialLinkText("partOfTheLink")
See Also