Skip to content

Commit 515e5db

Browse files
committed
small fix.
Signed-off-by: Karthik Bekal Pattathana <133984042+karthikbekalp@users.noreply.github.com>
1 parent 792f734 commit 515e5db

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/scripts/xa11y_linux_smoke.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def main() -> None:
5454

5555
field = app.locator("text_field").first()
5656
field.wait_visible(timeout=15)
57-
field.focus()
57+
# GTK entries may not expose AT-SPI's focus action. xa11y writes to
58+
# native editable controls directly, so explicit focus is unnecessary.
5859
field.type_text(MESSAGE)
5960

6061
value = field.element().value

0 commit comments

Comments
 (0)