Click or drag to resize

AccessibilityClient.GetFullAXTreeAsync Method

Version 113.3.50
Fetches the entire accessibility tree for the root Document

Namespace:  CefSharp.DevTools.Accessibility
Assembly:  CefSharp.Core (in CefSharp.Core.dll) Version: 113.3.50.0
Syntax
public Task<GetFullAXTreeResponse> GetFullAXTreeAsync(
	int? depth = null,
	string frameId = null
)

Parameters

depth (Optional)
Type: System.Nullable<Int32>
The maximum depth at which descendants of the root node should be retrieved.If omitted, the full tree is returned.
frameId (Optional)
Type: System.String
The frame for whose document the AX tree should be retrieved.If omited, the root frame is used.

Return Value

Type: Task<GetFullAXTreeResponse>
returns System.Threading.Tasks.Task<GetFullAXTreeResponse>
See Also