Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wait for the keypad itself to appear … #1

Merged
merged 1 commit into from Feb 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/index.ts
Expand Up @@ -4,11 +4,7 @@ import { PNG } from 'pngjs'

export async function login(page: Page, clientNumber: string, accessCode: string): Promise<string> {
await page.goto('https://www.ing.com.au/securebanking/')
await page.waitForResponse('https://www.ing.com.au/KeypadService/v1/KeypadService.svc/json/PinpadImages')
// we wait for a second request, but only if it comes within 2 seconds
await page
.waitForResponse('https://www.ing.com.au/KeypadService/v1/KeypadService.svc/json/PinpadImages', { timeout: 2000 })
.catch(() => {})
await page.waitForSelector('#loginInput')
await page.type('#cifField', clientNumber)

const randomisedKeys = await page.$$eval('.pin > img', imgs =>
Expand Down