Table of Contents

Class GetSearchResultsCommandSettings

Namespace
OpenQA.Selenium.DevTools.V147.DOM
Assembly
Selenium.WebDriver.dll

Returns search results from given fromIndex to given toIndex from the search with the given identifier.

public sealed class GetSearchResultsCommandSettings : ICommand
Inheritance
GetSearchResultsCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

FromIndex

Start index of the search result to be returned.

[JsonPropertyName("fromIndex")]
public long FromIndex { get; set; }

Property Value

long

SearchId

Unique search session identifier.

[JsonPropertyName("searchId")]
public string SearchId { get; set; }

Property Value

string

ToIndex

End index of the search result to be returned.

[JsonPropertyName("toIndex")]
public long ToIndex { get; set; }

Property Value

long