#544 issue resolved , used chrometabs api - Unit Tests #775
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 #544 issue resolved , used chrometabs api
π 4 test files added.
π Found 2 bugs
π οΈ 4/5 tests passed
π Test Updates
I've added 4 tests. They all pass βοΈ
New Tests:
tests/test_views.py
tests/test_prompts.py
tests/test_browser.py
tests/test_context.py
No existing tests required updates.
π Bug Detection
Potential issues found in the following files:
browser_use/agent/message_manager/service.py
The error occurs during the execution of the action function from the production code (Registry.execute_action), not because the test is written incorrectly. In the failing call for the action βtest_action_with_browserβ, the action function requires a βbrowserβ parameter. Even though the test passes βbrowser=mock_browserβ in one call, when testing the error case (i.e. calling the action without providing a browser), the production code directly calls the function without any pre-check. As a consequence, Python raises a TypeError for the missing required argument βbrowserβ. The exception is then caught and re-raised as a RuntimeError with an unexpected message. This behavior indicates a bug in the production code: it does not properly detect or handle the missing βbrowserβ argument in a user-friendly way (or with the expected error message), causing the test to fail.
browser_use/agent/service.py
The error occurs because when the registryβs execute_action function is called (with extra keyword arguments such as browser=mock_browser), the registered action function isnβt receiving the extra βbrowserβ argument. In the test, the async function test_action_with_browser expects two arguments (param1 and browser), but it is invoked with only βparam1β due to a bug in the code under test (or its mocking/wrapping in the registry) that fails to merge or forward the extra arguments properly. This is not an issue with the way the test is written but indicates a flaw in the implementation of execute_action in the registry service.
π οΈ Test Results
4/5 tests passedβ οΈ
tests/test_models.py
View error
tests/test_models.py
βοΈ Coverage Improvements
Coverage improvements by file:
tests/test_views.py
tests/test_prompts.py
tests/test_browser.py
tests/test_context.py
π¨ Final Touches
Settings | Logs | CodeBeaver