selenium-async

Wrapper for Selenium to make it easy, with asyncio support!


License
MIT
Install
pip install selenium-async==0.1.0

Documentation

selenium-async

Make Selenium easy to by managing a browser pool, and asyncio compatibility!

install

poetry add selenium-async

usage

import selenium_async


def get_title(driver: selenium_async.WebDriver):
    driver.get("https://www.python.org/")
    return driver.title

print(await selenium_async.run_sync(get_title))

# prints: Welcome to Python.org

license

MIT