Table of Contents

Interface IFindsByPartialLinkText

Namespace
OpenQA.Selenium.Internal
Assembly
WebDriver.dll

Defines the interface through which the user finds elements by a partial match on their link text.

public interface IFindsByPartialLinkText

Methods

FindElementByPartialLinkText(string)

Finds the first element matching the specified partial link text.

IWebElement FindElementByPartialLinkText(string partialLinkText)

Parameters

partialLinkText string

The partial link text to match.

Returns

IWebElement

The first IWebElement matching the criteria.

FindElementsByPartialLinkText(string)

Finds all elements matching the specified partial link text.

ReadOnlyCollection<IWebElement> FindElementsByPartialLinkText(string partialLinkText)

Parameters

partialLinkText string

The partial link text to match.

Returns

ReadOnlyCollection<IWebElement>

A ReadOnlyCollection<T> containing all IWebElements matching the criteria.