()
| 541 | } |
| 542 | |
| 543 | function findManagementKeyInput() { |
| 544 | const candidates = document.querySelectorAll( |
| 545 | '.LoginPage-module__loginCard___OgP-R input[type="password"], input[placeholder*="管理密钥"], input[aria-label*="管理密钥"]' |
| 546 | ); |
| 547 | return Array.from(candidates).find(isVisibleElement) || null; |
| 548 | } |
| 549 | |
| 550 | function findManagementLoginButton() { |
| 551 | const candidates = document.querySelectorAll('.LoginPage-module__loginCard___OgP-R button, .LoginPage-module__loginCard___OgP-R .btn'); |
no outgoing calls
no test coverage detected