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

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

public ReadOnlyCollection<IWebElement> FindElementsByPartialLinkText(
	string partialLinkText
)

Return Value

ReadOnlyCollection<IWebElement> objects so that you can interact that object

Implements

IFindsByPartialLinkText FindElementsByPartialLinkText(String)
Examples

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