bump
This commit is contained in:
@@ -10928,6 +10928,12 @@ func (d *Daemon) testKeyboardNavigationWithRealKeys(tabID string, timeout int) (
|
|||||||
const text = element.textContent.trim().substring(0, 50);
|
const text = element.textContent.trim().substring(0, 50);
|
||||||
const tabIndex = element.tabIndex;
|
const tabIndex = element.tabIndex;
|
||||||
|
|
||||||
|
// Skip elements that are not in the natural tab order
|
||||||
|
// Elements with tabIndex < 0 are programmatically focusable but not reachable via Tab key
|
||||||
|
if (tabIndex < 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Check if element is focusable using programmatic focus
|
// Check if element is focusable using programmatic focus
|
||||||
let isFocusable = false;
|
let isFocusable = false;
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user