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
When xpaths are turned on during a run ({ xpath: true }) and a node has an id, axe-core returns a relative path to the element with just the id instead of the absolute path from html (i.e. /input[@id=name]). However this is incorrect as the path should use a double // and not a single / (i.e. //input[@id=name])