/** * LinkedIn Easy Apply Adapter * * Handles LinkedIn's multi-step "Easy Apply" modal. * * ⚠️ LinkedIn ToS: Automated activity is prohibited. * This adapter requires explicit opt-in via `--enable-linkedin` flag. * Use sparingly (max 10-15 applications/day) for roles with score ≥ 80%. */ import type { Page } from "playwright-core"; import type { ATSAdapter, FormField } from "../index.js"; export declare class LinkedInAdapter implements ATSAdapter { platform: "linkedin"; navigateToForm(page: Page, jobUrl: string): Promise; extractFields(page: Page): Promise; fillField(page: Page, field: FormField, answer: string): Promise; /** * LinkedIn Easy Apply is multi-step — this advances through pages and submits. */ submit(page: Page): Promise; } //# sourceMappingURL=linkedin.d.ts.map