Best-effort form filler for any career page with standard HTML forms. Handles single-page and multi-step flows, resume upload, login wall and CAPTCHA detection. All ATS stub handlers now delegate to generic. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
/**
|
|
* lever.mjs — Lever ATS handler
|
|
* Delegates to generic handler — Lever forms are standard HTML forms
|
|
*/
|
|
import { apply as genericApply } from './generic.mjs';
|
|
|
|
export const SUPPORTED_TYPES = ['lever'];
|
|
|
|
export async function apply(page, job, formFiller) {
|
|
return genericApply(page, job, formFiller);
|
|
}
|