-
Hello, // file.js
import { PlaywrightCrawler } from "crawlee";
async requestHandler({ page, request }) {
console.log(`Processing: ${request.url}`);
const sizes = await page.locator("ol.radio-items")...
.... I'm using ├── @playwright/[email protected]
├── [email protected]
└── [email protected] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I just did a ` |
Beta Was this translation helpful? Give feedback.
I just did a
npm i playwright
and everything is working as it used to work. It seems that at some point I installedplaywright/test
and uninstalledplaywright
. My code worked, but apparently the type information available inplaywright
is not available withinplaywright/test
or if it is,PlaywrightCrawler
cannot access it for some reason.`