

Also from Kynth Studios


Also from Kynth Studios


Also from Kynth Studios
1<!-- Guidance for AI agents working in Selenium Python Bindings -->23## Code location45- Package: `py/selenium/`6- Remote/transport: `py/selenium/webdriver/remote/`78## Common commands910- Build: `bazel build //py/...`1112## Testing1314Run tests via `bazel test //py/...`. See `/AGENTS.md` for toolchain details.1516## Testing1718Run tests via `bazel test //py:test-{browser}` or `bazel test //py:test-{browser}-bidi`, where `{browser}` is the target browser (e.g., `chrome`, `firefox`, `edge`). See `/AGENTS.md` for toolchain details.1920## Code conventions2122### Logging2324```python25logger = logging.getLogger(__name__)2627logger.warning("actionable: something needs attention")28logger.info("useful: driver started successfully")29logger.debug("diagnostic: request payload for debugging")30```3132### Deprecation3334```python35warnings.warn(36 "old_method is deprecated, use new_method instead",37 DeprecationWarning,38 stacklevel=239)40```4142### Type hints4344Type hints are used throughout; add type annotations to new code4546Use union notation (`|`) instead of `Optional`:4748```python49# Preferred50def method(param: str | None) -> int | None:51 pass5253# Avoid54def method(param: Optional[str]) -> Optional[int]:55 pass56```5758### Python version5960Code must work with Python 3.10 or later. Use modern syntax features available in 3.10+:6162- Use `|` for union types instead of `Union[]`63- Use `X | None` instead of `Optional[X]`6465When running tests or code in the terminal, explicitly use `python3.10` or later:6667```bash68# Use explicitly69python3.10 -c "..."70python3.11 -c "..."7172# Avoid relying on `python3` as it may be 3.9 or earlier73```7475### Documentation7677Use Google-style docstrings:7879```python80def method(param: str) -> bool:81 """Brief description.8283 Args:84 param: Description of param.8586 Returns:87 Description of return value.8889 Raises:90 ValueError: When condition.91 """92```93
One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| SeleniumHQ/seleniumjava/AGENTS.md · 34k | AGENTS.md | teststyledocs | 58/100 | 14 days ago | |
| SeleniumHQ/seleniumrb/AGENTS.md · 34k | AGENTS.md | teststyletypestesting-strategy+2 | 58/100 | 14 days ago | |
| SeleniumHQ/seleniumdotnet/AGENTS.md · 34k | AGENTS.md | teststyledocs | 73/100 | 9 days ago | |
| SeleniumHQ/seleniumrust/AGENTS.md · 34k | AGENTS.md | teststyledocs | 44/100 | 14 days ago | |
| SeleniumHQ/seleniumAGENTS.md · 34k | AGENTS.md | teststylearchgit+1 | 75/100 | 14 days ago | |
| SeleniumHQ/seleniumjavascript/selenium-webdriver/AGENTS.md · 34k | AGENTS.md | teststyledocs | 44/100 | 14 days ago |
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| TryGhost/Ghoste2e/AGENTS.md · 55k | AGENTS.md | setupteststylearch+2 | 100/100 | today | |
| mui/material-uiAGENTS.md · 99k | AGENTS.md | setupbuildtestlint-format+9 | 100/100 | 14 days ago | |
| duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70 | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| code-yeongyu/oh-my-openagentpackages/web/AGENTS.md · 68k | AGENTS.md | setupbuildtestlint-format+6 | 100/100 | 13 days ago | |
| vllm-project/vllmAGENTS.md · 89k | AGENTS.md | setuptestlint-formatstyle+5 | 100/100 | 14 days ago | |
| deepseek-ai/deepseek-harnessnative/landlock-run/AGENTS.md · 104k | AGENTS.md | setupteststylearch+3 | 100/100 | today | |
| n8n-io/n8npackages/@n8n/agents/AGENTS.md · 201k | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| elastic/elasticsearchx-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/AGENTS.md · 78k | AGENTS.md | buildtestlint-formatstyle+2 | 100/100 | 14 days ago |
A badge carrying the measured quality of the strongest agent config file in this repository, out of 100. It reads from this index every time somebody loads your page, so it changes when the measurement changes and there is nothing to keep up to date. Free, no account, and the value is not something you or we can set by hand.
[](https://rulestack.kynth.studio/configs/seleniumhq-selenium-py-agents)Would rather not hotlink us? Every badge is also served in shields.io’s endpoint schema, so shields renders the image and your readers never talk to our domain:
Published by Toolproof, the masthead over this index and eight others. The method behind the number is at toolproof.kynth.studio/methodology, and the whole thing is readable as JSON with no key at /api.