Improve DOM Processing - Unit Tests #617
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CodeBeaver PR Summary
I started working from Improve DOM Processing
π 1 test added.
π Found 1 bug
π οΈ 1/8 tests passed
π Test Updates
I've added 1 tests. They all pass βοΈ
New Tests:
tests/test_views.py
No existing tests required updates.
π Bug Detection
Potential issues found in the following files:
browser_use/dom/service.py
The error is raised by the code in Registry.execute_action when it calls the action function. Although the test calls execute_action with a βbrowserβ keyword argument (and so the merged parameters should include browser), the function ends up not actually receiving that argument. In other words, the extra browser parameter is either being dropped or not passed correctly when calling action.function(**validated_params.model_dump(), **extra_args). This causes the underlying async function (test_action_with_browser) to be invoked without its required βbrowserβ parameter, triggering a TypeError. Thus, the registryβs implementation of execute_action is buggy in how it handles and passes extra keyword arguments to the action function.
π οΈ Test Results
1/8 tests passedβ οΈ
tests/test_dropdown.py
View error
tests/test_dropdown.py
tests/test_dropdown_complex.py
View error
tests/test_dropdown_complex.py
tests/test_dropdown_error.py
View error
tests/test_dropdown_error.py
tests/test_gif_path.py
View error
tests/test_gif_path.py
tests/test_models.py
View error
tests/test_models.py
tests/test_react_dropdown.py
View error
tests/test_react_dropdown.py
tests/test_vision.py
View error
tests/test_vision.py
βοΈ Coverage Improvements
Coverage improvements by file:
tests/test_views.py
π¨ Final Touches
Settings | Logs | CodeBeaver