You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Added new HTML documentation files for various classes and enums in the .NET API, including BrowsingContextModule, Broker, BrowsingContext, BrowsingContextNetworkModule, BiDi, NetworkModule, FetchTimingInfo, and UserPromptType.
Each documentation file includes detailed sections on constructors, methods, properties, and inheritance information.
Provided links to source code and related classes/interfaces for better navigation and understanding.
Deleted outdated documentation files related to older versions of DevTools adapters and modules.
Documentation Completeness The newly added BrowsingContextModule class documentation lacks method descriptions and parameter explanations, which may hinder developers' understanding and usage of the API.
Missing Property Descriptions The AccessibilityValue record's properties (Name and Role) lack descriptions, which could make it difficult for developers to understand their purpose and usage.
Why: Adding a lang attribute to the HTML tag enhances accessibility by informing assistive technologies of the document's language, and it also aids SEO by providing search engines with language context.
9
Enhancement
Use a more specific and contextual page title
Consider using a more specific title for the page, including the namespace, to provide better context.
-<title>Class BrowsingContext </title>+<title>OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContext Class | Selenium WebDriver API</title>
Apply this suggestion
Suggestion importance[1-10]: 8
Why: Using a more specific title tag that includes the full class name and namespace improves clarity and searchability, which is beneficial for users navigating the documentation.
8
Add parameter descriptions to improve method documentation
Add parameter descriptions for the ConnectAsync method to provide information about the expected input.
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>url</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
- <dd></dd>+ <dd>The WebSocket URL to connect to for BiDi communication.</dd>
</dl>
Apply this suggestion
Suggestion importance[1-10]: 8
Why: Providing parameter descriptions for the ConnectAsync method is crucial for users to understand the expected input, thereby improving the method's documentation and usability.
8
Add a meta description tag for better SEO and content summary
Consider adding a meta description tag to improve SEO and provide a brief summary of the page content.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class BrowsingContextModule ">
+<meta name="description" content="Documentation for the BrowsingContextModule class in the Selenium BiDi API">
Apply this suggestion
Suggestion importance[1-10]: 7
Why: Adding a meta description tag is a good practice for SEO and helps provide a brief summary of the page content, which can improve search engine visibility and user understanding.
7
Add a meta description tag for better SEO and content summarization
Add a meta description tag to improve SEO and provide a brief summary of the page content.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class BrowsingContext ">
+<meta name="description" content="API documentation for the BrowsingContext class in Selenium WebDriver's BiDi module.">
Apply this suggestion
Suggestion importance[1-10]: 7
Why: Adding a meta description tag is a good practice for SEO and provides a brief summary of the page content, which can enhance search engine visibility and user understanding.
7
Add a brief description of the BiDi class to improve documentation clarity
Consider adding a brief description or summary for the BiDi class in the <div class="markdown summary"> section. This would provide users with a quick overview of the class's purpose and functionality.
-<div class="markdown summary"></div>+<div class="markdown summary">+ The BiDi class represents the main entry point for Selenium's BiDirectional API, providing access to various modules and methods for interacting with the browser.+</div>
Apply this suggestion
Suggestion importance[1-10]: 7
Why: Adding a summary for the BiDi class enhances the documentation by providing users with a quick overview of the class's purpose and functionality, improving clarity and usability.
7
Add a description for the Browser property to clarify its purpose
Add a description for the Browser property to explain its purpose and usage within the BiDi class.
-<div class="markdown level1 summary"></div>-<div class="markdown level1 conceptual"></div>+<div class="markdown level1 summary">Gets the BrowserModule instance for interacting with browser-specific functionality.</div>+<div class="markdown level1 conceptual">The Browser property provides access to browser-related operations and information through the BrowserModule.</div>
Apply this suggestion
Suggestion importance[1-10]: 7
Why: Including a description for the Browser property helps users understand its role and how it can be used within the BiDi class, enhancing the documentation's comprehensiveness.
7
Add Open Graph meta tags for better social media integration
Consider adding Open Graph meta tags to improve social media sharing capabilities.
<meta name="title" content="Class BrowsingContextModule ">
+<meta property="og:title" content="BrowsingContextModule Class - Selenium BiDi API">+<meta property="og:type" content="website">+<meta property="og:url" content="https://www.selenium.dev/documentation/webdriver/bidirectional/browsing_context/">+<meta property="og:description" content="Documentation for the BrowsingContextModule class in the Selenium BiDi API">
Apply this suggestion
Suggestion importance[1-10]: 6
Why: Open Graph meta tags enhance social media sharing capabilities, making the content more appealing and informative when shared, although it is not critical for the functionality of the documentation.
6
Add a conceptual description for the DisposeAsync method to explain its purpose and usage
Add a summary and conceptual description for the DisposeAsync method to explain its purpose and behavior.
<div class="markdown level1 summary"><p>Performs application-defined tasks associated with freeing, releasing, or
resetting unmanaged resources asynchronously.</p>
</div>
-<div class="markdown level1 conceptual"></div>+<div class="markdown level1 conceptual">+<p>This method is used to properly dispose of the BiDi instance, ensuring that all associated resources are released. It should be called when the BiDi object is no longer needed to prevent resource leaks.</p>+</div>
Apply this suggestion
Suggestion importance[1-10]: 6
Why: Adding a conceptual description for the DisposeAsync method helps clarify its purpose and usage, which is beneficial for users to understand resource management in the BiDi class.
6
Best practice
Add a language attribute to the html tag
Consider adding a language attribute to the html tag to specify the document's language.
Why: Adding a language attribute is a best practice that improves accessibility and helps search engines and browsers understand the language of the document, though it is not crucial for the document's functionality.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Motivation and Context
Types of changes
Checklist
PR Type
Documentation
Description
BrowsingContextModule,Broker,BrowsingContext,BrowsingContextNetworkModule,BiDi,NetworkModule,FetchTimingInfo, andUserPromptType.DevToolsadapters and modules.Changes walkthrough 📝
8 files
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextModule.html
Add HTML documentation for BrowsingContextModule classdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextModule.html
BrowsingContextModuleclass.
OpenQA.Selenium.BiDi.Communication.Broker.html
Add HTML documentation for Broker classdocs/api/dotnet/OpenQA.Selenium.BiDi.Communication.Broker.html
Brokerclass.OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContext.html
Add HTML documentation for BrowsingContext classdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContext.html
BrowsingContextclass.BrowsingContextclass.OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextNetworkModule.html
Add HTML documentation for BrowsingContextNetworkModule classdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextNetworkModule.html
BrowsingContextNetworkModuleclass.BrowsingContextNetworkModuleclass.OpenQA.Selenium.BiDi.BiDi.html
Add HTML documentation for BiDi class in .NET APIdocs/api/dotnet/OpenQA.Selenium.BiDi.BiDi.html
BiDiclass.information.
OpenQA.Selenium.BiDi.Modules.Network.NetworkModule.html
Add HTML documentation for NetworkModule class in .NET APIdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.NetworkModule.html
NetworkModuleclass.OpenQA.Selenium.BiDi.Modules.Network.FetchTimingInfo.html
Add HTML documentation for FetchTimingInfo class in .NET APIdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.FetchTimingInfo.html
FetchTimingInfoclass.OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptType.html
Add HTML documentation for UserPromptType enum in .NET APIdocs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptType.html
UserPromptTypeenum.101 files
OpenQA.Selenium.BiDi.Modules.Network.ResponseData.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ResponseData.html
...
OpenQA.Selenium.BiDi.Modules.Network.Intercept.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.Intercept.html
...
OpenQA.Selenium.BiDi.Modules.Script.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextScriptModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextScriptModule.html
...
OpenQA.Selenium.BiDi.Modules.Network.Cookie.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.Cookie.html
...
OpenQA.Selenium.BiDi.Modules.Network.RequestData.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.RequestData.html
...
OpenQA.Selenium.BiDi.Modules.Script.NodeProperties.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.NodeProperties.html
...
OpenQA.Selenium.BiDi.Modules.Network.BaseParametersEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.BaseParametersEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.Network.SetCookieHeader.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.SetCookieHeader.html
...
OpenQA.Selenium.BiDi.Modules.Network.Request.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.Request.html
...
OpenQA.Selenium.BiDi.Modules.Script.ScriptModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ScriptModule.html
...
OpenQA.Selenium.BiDi.Modules.Session.Capability.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Session.Capability.html
...
OpenQA.Selenium.BiDi.Modules.Storage.PartialCookie.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Storage.PartialCookie.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextInfo.html
...
OpenQA.Selenium.BiDi.Modules.Storage.CookieFilter.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Storage.CookieFilter.html
...
OpenQA.Selenium.BiDi.Modules.Script.RemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.RemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintOptions.html
...
OpenQA.Selenium.BiDi.Modules.Browser.BrowserModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Browser.BrowserModule.html
...
OpenQA.Selenium.BiDi.Communication.Transport.WebSocketTransport.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Communication.Transport.WebSocketTransport.html
...
OpenQA.Selenium.BiDi.Modules.Log.BaseLogEntry.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Log.BaseLogEntry.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.html
...
OpenQA.Selenium.BiDi.Modules.Network.BeforeRequestSentEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.BeforeRequestSentEventArgs.html
...
OpenQA.Selenium.Cookie.html
...docs/api/dotnet/OpenQA.Selenium.Cookie.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.InnerTextLocator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.InnerTextLocator.html
...
OpenQA.Selenium.BiDi.Modules.Log.ConsoleLogEntry.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Log.ConsoleLogEntry.html
...
OpenQA.Selenium.BiDi.Modules.Network.AuthRequiredEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.AuthRequiredEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.Network.ResponseCompletedEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ResponseCompletedEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.Network.ResponseStartedEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ResponseStartedEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.Network.FetchErrorEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.FetchErrorEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextStorageModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextStorageModule.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptOpenedEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptOpenedEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.NavigationInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.NavigationInfo.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BoxClipRectangle.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BoxClipRectangle.html
...
OpenQA.Selenium.BiDi.Modules.Network.Initiator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.Initiator.html
...
OpenQA.Selenium.BiDi.Modules.Network.ContinueResponseOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ContinueResponseOptions.html
...
OpenQA.Selenium.BiDi.Modules.Network.ProvideResponseOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ProvideResponseOptions.html
...
OpenQA.Selenium.BiDi.Modules.Network.ContinueRequestOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.ContinueRequestOptions.html
...
OpenQA.Selenium.BiDi.Modules.Network.UrlPatternPattern.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.UrlPatternPattern.html
...
OpenQA.Selenium.BiDi.Modules.Session.CapabilityRequest.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Session.CapabilityRequest.html
...
OpenQA.Selenium.BiDi.Modules.Storage.StorageModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Storage.StorageModule.html
...
OpenQA.Selenium.BiDi.Modules.Script.CallFunctionOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.CallFunctionOptions.html
...
OpenQA.Selenium.BiDi.Modules.Script.LocalValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.LocalValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.ExceptionDetails.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ExceptionDetails.html
...
OpenQA.Selenium.BiDi.Modules.Script.StackFrame.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.StackFrame.html
...
OpenQA.Selenium.BiDi.Modules.Script.ScriptEvaluateException.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ScriptEvaluateException.html
...
OpenQA.Selenium.BiDi.Modules.Session.ManualProxyConfiguration.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Session.ManualProxyConfiguration.html
...
OpenQA.Selenium.BiDi.Communication.EventHandler.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Communication.EventHandler.html
...
OpenQA.Selenium.BiDi.Modules.Script.BaseRealmInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.BaseRealmInfo.html
...
OpenQA.Selenium.BiDi.Modules.Script.WindowRealmInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.WindowRealmInfo.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.Locator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.Locator.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextLogModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.BrowsingContextLogModule.html
...
OpenQA.Selenium.BiDi.Communication.CommandOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Communication.CommandOptions.html
...
OpenQA.Selenium.BiDi.Modules.Network.UrlPattern.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.UrlPattern.html
...
OpenQA.Selenium.BiDi.Modules.Input.KeySourceActions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Input.KeySourceActions.html
...
OpenQA.Selenium.BiDi.Modules.Script.DedicatedWorkerRealmInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.DedicatedWorkerRealmInfo.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptClosedEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.UserPromptClosedEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.Script.AddPreloadScriptOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.AddPreloadScriptOptions.html
...
OpenQA.Selenium.BiDi.Modules.Script.WindowProxyRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.WindowProxyRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.RegExpRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.RegExpRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.DateRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.DateRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.NodeRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.NodeRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintPageRange.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintPageRange.html
...
OpenQA.Selenium.BiDi.Modules.Log.LogModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Log.LogModule.html
...
OpenQA.Selenium.BiDi.Modules.Script.NumberLocalValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.NumberLocalValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.PreloadScript.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.PreloadScript.html
...
OpenQA.Selenium.DevTools.DevToolsCommandData.html
...docs/api/dotnet/OpenQA.Selenium.DevTools.DevToolsCommandData.html
...
OpenQA.Selenium.BiDi.Modules.Network.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.html
...
OpenQA.Selenium.BiDi.Modules.Script.ChannelProperties.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ChannelProperties.html
...
OpenQA.Selenium.BiDi.Modules.Script.RemoteObjectReference.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.RemoteObjectReference.html
...
OpenQA.Selenium.BiDi.Modules.Input.InputModule.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Input.InputModule.html
...
OpenQA.Selenium.BiDi.Modules.Script.SharedReference.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.SharedReference.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.LocateNodesOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.LocateNodesOptions.html
...
OpenQA.Selenium.BiDi.Modules.Script.ObjectRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ObjectRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Network.BasicAuthCredentials.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.BasicAuthCredentials.html
...
OpenQA.Selenium.BiDi.Modules.Script.HtmlCollectionRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.HtmlCollectionRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Storage.GetCookiesResult.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Storage.GetCookiesResult.html
...
OpenQA.Selenium.BiDi.Modules.Network.AddInterceptOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.AddInterceptOptions.html
...
OpenQA.Selenium.BiDi.Modules.Script.MapRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.MapRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.NodeListRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.NodeListRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.CaptureScreenshotOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.CaptureScreenshotOptions.html
...
OpenQA.Selenium.BiDi.Modules.Script.ArrayRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ArrayRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.Script.SetRemoteValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.SetRemoteValue.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.AccessibilityLocator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.AccessibilityLocator.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.CreateOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.CreateOptions.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.GetTreeOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.GetTreeOptions.html
...
OpenQA.Selenium.BiDi.Modules.Log.JavascriptLogEntry.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Log.JavascriptLogEntry.html
...
OpenQA.Selenium.BiDi.Modules.Script.EvaluateOptions.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.EvaluateOptions.html
...
OpenQA.Selenium.BiDi.Communication.Transport.ITransport.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Communication.Transport.ITransport.html
...
OpenQA.Selenium.BiDi.Modules.Script.ContextTarget.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ContextTarget.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.NavigateResult.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.NavigateResult.html
...
OpenQA.Selenium.BiDi.BrowsingContextEventArgs.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.BrowsingContextEventArgs.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.CaptureScreenshotResult.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.CaptureScreenshotResult.html
...
OpenQA.Selenium.BiDi.Modules.Script.ObjectLocalValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.ObjectLocalValue.html
...
OpenQA.Selenium.BiDi.Modules.Network.CookieHeader.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Network.CookieHeader.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintMargin.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.PrintMargin.html
...
OpenQA.Selenium.BiDi.Modules.Script.AudioWorkletRealmInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.AudioWorkletRealmInfo.html
...
OpenQA.Selenium.BiDi.Modules.Script.PaintWorkletRealmInfo.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.PaintWorkletRealmInfo.html
...
OpenQA.Selenium.BiDi.Modules.Script.MapLocalValue.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Script.MapLocalValue.html
...
OpenQA.Selenium.BiDi.Modules.Session.NewResult.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.Session.NewResult.html
...
OpenQA.Selenium.BiDi.Modules.BrowsingContext.CssLocator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.CssLocator.html
...
Additional 164 files not shown
...Additional 164 files not shown
...
1 files
OpenQA.Selenium.BiDi.Modules.BrowsingContext.XPathLocator.html
...docs/api/dotnet/OpenQA.Selenium.BiDi.Modules.BrowsingContext.XPathLocator.html
...