4cd2d4af2b
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
56 lines
1.9 KiB
YAML
56 lines
1.9 KiB
YAML
name: 📚 Documentation Issue
|
|
description: Report an issue in the browser-use documentation
|
|
labels: ["documentation"]
|
|
title: "Documentation: ..."
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to improve our documentation! Please fill out the form below to help us fix the issue quickly.
|
|
|
|
- type: dropdown
|
|
id: type
|
|
attributes:
|
|
label: Type of Documentation Issue
|
|
description: What type of documentation issue is this?
|
|
options:
|
|
- Missing documentation
|
|
- Incorrect documentation
|
|
- Unclear documentation
|
|
- Broken link
|
|
- Other (specify in description)
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: page
|
|
attributes:
|
|
label: Documentation Page
|
|
description: Which page or section of the documentation is this about?
|
|
placeholder: "e.g. https://docs.browser-use.com/open-source/customize/browser/all-parameters > Display & Appearance > headless"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Issue Description
|
|
description: "Describe what's wrong or missing in the documentation"
|
|
placeholder: e.g. Docs should clarify whether BrowserSession(no_viewport=False) is supported when running in BrowserSession(headless=False) mode...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: suggestion
|
|
attributes:
|
|
label: Suggested Changes
|
|
description: If you have specific suggestions for how to improve the documentation, please share them
|
|
placeholder: |
|
|
e.g. The documentation could be improved by adding one more line here:
|
|
```diff
|
|
Use `BrowserSession(headless=False)` to open the browser window (aka headful mode).
|
|
+ Viewports are not supported when headful, if `headless=False` it will force `no_viewport=True`.
|
|
```
|
|
validations:
|
|
required: false
|