Selenium WebDriverWait() not available?
Hello, I'm running a python Actor on a page that has some dynamic content that loads slowly. I'm using
WebDriverWait()
in my code that works outside of apify.
But when I run this code in apify I see this error message:
I don't see anything in the docs for Python, but I do see references to context.waitFor()
which looks like JS.
Is this type of waiting only supported in JS?1 Reply
flat-fuchsiaOP•13mo ago
Just to follow up, I think this is a problem in selenium. Locally it doesn't seem to work in headless mode. I would up rewriting my function in js using puppeteer and that worked. 🤷