Table of Contents

Interface IQuery<T>

Namespace
CSF.Screenplay.Selenium.Queries
Assembly
CSF.Screenplay.Selenium.dll

An object which can get a value from a Selenium element.

public interface IQuery<out T> : IHasName

Type Parameters

T

The type of the value returned.

Inherited Members

Remarks

Each implementation of IQuery<T> is responsible for getting a specific kind of value from a Selenium element.

Methods

GetValue(SeleniumElement)

Gets the current value from a Selenium element.

T GetValue(SeleniumElement element)

Parameters

element SeleniumElement

The Selenium element.

Returns

T

The value of type T.