(button)
| 1832 | } |
| 1833 | |
| 1834 | function isButtonEnabled(button) { |
| 1835 | return Boolean(button) |
| 1836 | && !button.disabled |
| 1837 | && button.getAttribute('aria-disabled') !== 'true'; |
| 1838 | } |
| 1839 | |
| 1840 | async function waitForStableButtonRect(button, timeout = 1500) { |
| 1841 | let previous = null; |
no outgoing calls
no test coverage detected