Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os != 'win' OR headless
- This test failed 2 times in the preceding 30 days. quicksearch this test
- Manifest: accessible/tests/browser/windows/uia/browser.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
"use strict";
addUiaTask(
`
<button id="button">button</p>
<a id="a" href="#">a</a>
`,
async function () {
ok(
await runPython(`
global doc
doc = getDocUia()
button = findUiaByDomId(doc, "button")
rect = button.CurrentBoundingRectangle
found = uiaClient.ElementFromPoint(POINT(rect.left + 1, rect.top + 1))
return uiaClient.CompareElements(button, found)
`),
"ElementFromPoint on button returns button"
);
ok(
await runPython(`
a = findUiaByDomId(doc, "a")
rect = a.CurrentBoundingRectangle
found = uiaClient.ElementFromPoint(POINT(rect.left + 1, rect.top + 1))
return uiaClient.CompareElements(a, found)
`),
"ElementFromPoint on a returns a"
);
}
);