Fix Add sensitive_data
parameter to multi_act
in rerun_history - Unit Tests
#707
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 Fix Add
sensitive_data
parameter tomulti_act
in rerun_history๐ 2 tests added.
๐ Found 1 bug
๐ ๏ธ 2/3 tests passed
๐ Test Updates
I've added 2 tests. They all pass โ๏ธ
New Tests:
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/service.py
The error message:
TypeError: TestRegistry.test_execute_action_with_and_without_browser_context..test_action_with_browser() missing 1 required positional argument: 'browser'
indicates that when executing the action โtest_action_with_browserโ via Registry.execute_action, the browser parameter is not being passed as expected. In our test, we explicitly call execute_action with an extra keyword argument (browser=mock_browser). However, during the call to the target function (via something like โawait action.function(**validated_params.model_dump(), **extra_args)โ), the value for โbrowserโ is missing, resulting in a TypeError. This implies that there is an issue in the code of the registryโs execute_action method (or in how it merges parameters) so that the extra arguments are not forwarded correctly to functions requiring the browser parameter.
Thus, the error is caused by a bug in the code being tested.
๐ ๏ธ Test Results
2/3 tests passedโ ๏ธ
tests/test_models.py
View error
tests/test_models.py
โ๏ธ Coverage Improvements
Coverage improvements by file:
tests/test_browser.py
tests/test_context.py
๐จ Final Touches
Settings | Logs | CodeBeaver