(tabId, options = {})
| 6009 | } |
| 6010 | |
| 6011 | async function ensureStep8SignupPageReady(tabId, options = {}) { |
| 6012 | await ensureContentScriptReadyOnTab('signup-page', tabId, { |
| 6013 | inject: SIGNUP_PAGE_INJECT_FILES, |
| 6014 | injectSource: 'signup-page', |
| 6015 | timeoutMs: options.timeoutMs ?? 15000, |
| 6016 | retryDelayMs: options.retryDelayMs ?? 600, |
| 6017 | logMessage: options.logMessage || '', |
| 6018 | }); |
| 6019 | } |
| 6020 | |
| 6021 | async function getStep8PageState(tabId, responseTimeoutMs = 1500) { |
| 6022 | try { |
no test coverage detected