Table of Contents

Class FunctionCoverage

Namespace
OpenQA.Selenium.DevTools.V148.Profiler
Assembly
Selenium.WebDriver.dll

Coverage data for a JavaScript function.

public sealed class FunctionCoverage
Inheritance
FunctionCoverage
Inherited Members

Properties

FunctionName

JavaScript function name.

[JsonPropertyName("functionName")]
public string FunctionName { get; set; }

Property Value

string

IsBlockCoverage

Whether coverage data for this function has block granularity.

[JsonPropertyName("isBlockCoverage")]
public bool IsBlockCoverage { get; set; }

Property Value

bool

Ranges

Source ranges inside the function with coverage data.

[JsonPropertyName("ranges")]
public CoverageRange[] Ranges { get; set; }

Property Value

CoverageRange[]