blob: acf6fe91c7eed363c14d2cf685ef71e073fb29fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* 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
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"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"
);
}
);
|