python-selenium-async icon indicating copy to clipboard operation
python-selenium-async copied to clipboard

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

Results 3 python-selenium-async issues
Sort by recently updated
recently updated
newest added

I want to specify additional firefox options. How can I do it?

Fixes munro/python-selenium-async#3

The following code will open a Firefox window instead of executing in the background. ``` import asyncio from selenium_async import use_browser, Options async def browse(): async with use_browser(options=Options(headless=True)) as driver:...