Skip to content
Snippets Groups Projects
  • svatal's avatar
    d4a7a47b
    new protocol (chrome 62) · d4a7a47b
    svatal authored
    + deprecated json field support (-> obsolete)
    + event with dictionary support
    + updated sample not to use deprecated command (SetVisibleSizeCommand ->
    SetDeviceMetricsOverrideCommand)
    d4a7a47b
    History
    new protocol (chrome 62)
    svatal authored
    + deprecated json field support (-> obsolete)
    + event with dictionary support
    + updated sample not to use deprecated command (SetVisibleSizeCommand ->
    SetDeviceMetricsOverrideCommand)
AXRelatedNode.cs 753 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;

namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Accessibility
{
	[SupportedBy("Chrome")]
	public class AXRelatedNode
	{
		/// <summary>
		/// Gets or sets The BackendNodeId of the related DOM node.
		/// </summary>
		public long BackendDOMNodeId { get; set; }
		/// <summary>
		/// Gets or sets The IDRef value provided, if any.
		/// </summary>
		[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
		public string Idref { get; set; }
		/// <summary>
		/// Gets or sets The text alternative of this node in the current context.
		/// </summary>
		[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
		public string Text { get; set; }
	}
}