Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Async WebDriver implementation for asyncio and asyncio-compatible frameworks
| Date | Stars |
|---|---|
| 2026-07-24 | 359 |
| 2026-07-25 | 359 |
| 2026-07-28 | 359 |
| 2026-07-30 | 359 |
| 2026-08-06 | 359 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Async Webdriver
[](https://circleci.com/gh/HDE/arsenic/tree/main) [](http://arsenic.readthedocs.io/en/latest/?badge=latest)
[](https://automate.browserstack.com/public-build/QmtNVHFnWWRFSEVUdTBZNWU5NGMraVorWVltazFqRk1VNWRydW5FRXU2dz0tLVhoTlFuK2tZUTJ1UGx0UmZaWjg4R1E9PQ==--35ef3d28fbf8ea24ee7fa2a435f9271fbaaf85d4)
[](https://ci.appveyor.com/project/ojii/arsenic)
[](https://badge.fury.io/py/arsenic)
[](https://github.com/ambv/black)
[](https://opensource.org/licenses/Apache-2.0)
Asynchronous webdriver client built on asyncio.
## Quickstart
Let's run a local Firefox instance.
```python
from arsenic import get_session
from arsenic.browsers import Firefox
from arsenic.services import Geckodriver
async def example():
# Runs geckodriver and starts a firefox session
async with get_session(Geckodriver(), Firefox()) as session:
# go to example.com
await session.get('http://example.com')
# wait up to 5 seconds to get the h1 element from the page
h1 = await session.wait_for_element(5, 'h1')
# print the text of the h1 element
print(await h1.get_text())
```
For more information, check [the documentation](https://arsenic.readthedocs.io/)
## CI Supported by Browserstack
Continuous integration for certain browsers is generously provided by [Browserstack](http://browserstack.com).
[](http://browserstack.com/)
Excerpt of 2,114 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:fc423f6eb033a6a4, topic:testing