(
left,
top,
right,
bottom,
label="btn",
tag="button",
in_viewport=True,
occluded=False,
)
| 55 | |
| 56 | |
| 57 | def _elem( |
| 58 | left, |
| 59 | top, |
| 60 | right, |
| 61 | bottom, |
| 62 | label="btn", |
| 63 | tag="button", |
| 64 | in_viewport=True, |
| 65 | occluded=False, |
| 66 | ): |
| 67 | return { |
| 68 | "left": left, |
| 69 | "top": top, |
| 70 | "right": right, |
| 71 | "bottom": bottom, |
| 72 | "label": label, |
| 73 | "tag": tag, |
| 74 | "inViewport": in_viewport, |
| 75 | "occluded": occluded, |
| 76 | } |
| 77 | |
| 78 | |
| 79 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected