Javascript – What makes an element unclickable when using locator(), but clickable when using $()?
I'm trying to automate posting content to Facebook. Assuming you don't need to login, here is my code: import { Page } from "npm:puppeteer"; // Initiate const browser = await puppeteer.launch({ headless: false, userDataDir: "./user_data", args: minimal_args.concat(args), }); const page…