(snapshot)
| 428 | } |
| 429 | |
| 430 | function looksLikeKeyboardTipQuery(snapshot) { |
| 431 | const text = JSON.stringify(snapshot); |
| 432 | return /Speed up your typing/i.test(text) && /\bContinue\b/.test(text); |
| 433 | } |
| 434 | |
| 435 | function keyboardTipContinueTapTarget(snapshot) { |
| 436 | const nodes = compactQueryNodes(snapshot); |
no outgoing calls
no test coverage detected