Skip to content

Commit

Permalink
fix(tools/risk-form-filler): hybrid form online section not filled
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyFriesenGitHub authored and MFarabi619 committed Dec 17, 2024
1 parent 1b09b2c commit 7822a89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class OnlineInformation {
}

static async fill(page: Page, data: any): Promise<void> {
if (page.url().includes('online')) {
if (page.url().includes('online') || page.url().includes('hybrid')) {
await page.locator(`[name=online_platform]`).fill(data.onlinePlatform || '')
await page.locator(`[name=online_topic]`).fill(data.onlineTopic || '')
await page.locator(`[name=online_location]`).fill(data.onlineLocation || '')
Expand Down

0 comments on commit 7822a89

Please sign in to comment.