jsfehler

Results 31 comments of jsfehler

This is a bare bones example of what an external driver plugin could look like: ```from selenium.webdriver import Ie import splinter from splinter.driver.webdriver import BaseWebDriver class WebDriver(BaseWebDriver): driver_name = "Ie"...

@rgilton Are you using splinter without selenium?

@rgilton I asked the question because the answer determines if the bug is a simple fix or not.

@oliverdixon85 These are chromedriver errors, so your issue isn't splinter related. There's nothing we can do from this side. However, this is probably a permissions issue or a path issue....

@marcuxyz Can you provide the command you're using to run the tests, a full traceback, plus the operating system and python version you're using?

If you can do an initial PR which adds typescript compilation to the build process and one file with types, sure. If that works then It'll be easy to merge...

Closing this issue due to #933. The find_by_ methods will remain and a find() method has been added.

Selenium now waits for page load by default. It must be disabled via an Options parameter: https://www.selenium.dev/documentation/webdriver/drivers/options/#pageloadstrategy It won't handle complex hydration scenarios, but strategies for dealing with that are...