Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Add sensitive_data parameter to multi_act in rerun_history - Unit Tests #707

Merged
merged 3 commits into from
Feb 13, 2025

Conversation

codebeaver-ai[bot]
Copy link
Contributor

@codebeaver-ai codebeaver-ai bot commented Feb 13, 2025

CodeBeaver PR Summary

I started working from Fix Add sensitive_data parameter to multi_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:84: in <module>
    ChatGoogleGenerativeAI(model='gemini-2.0-flash-exp', api_key=api_key_gemini),
/usr/local/lib/python3.11/site-packages/langchain_core/load/serializable.py:125: in __init__
    super().__init__(*args, **kwargs)
/usr/local/lib/python3.11/site-packages/langchain_google_genai/chat_models.py:841: in validate_environment
    self.client = genaix.build_generative_service(
/usr/local/lib/python3.11/site-packages/langchain_google_genai/_genai_extension.py:276: in build_generative_service
    return v1betaGenerativeServiceClient(**config)
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/client.py:667: in __init__
    self._transport = transport_init(
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/transports/grpc.py:235: in __init__
    super().__init__(
/usr/local/lib/python3.11/site-packages/google/ai/generativelanguage_v1beta/services/generative_service/transports/base.py:100: in __init__
    credentials, _ = google.auth.default(
/usr/local/lib/python3.11/site-packages/google/auth/_default.py:719: in default
    raise exceptions.DefaultCredentialsError(_CLOUD_SDK_MISSING_CREDENTIALS)
E   google.auth.exceptions.DefaultCredentialsError: Your default credentials were not found. To set up Application Default Credentials, see https://cloud.google.com/docs/authentication/external/set-up-adc for more information.

tests/test_models.py

โ˜‚๏ธ Coverage Improvements

Coverage improvements by file:

  • tests/test_browser.py

    New coverage: 88.50%
    Improvement: +88.50%

  • tests/test_context.py

    New coverage: 36.40%
    Improvement: +36.40%

๐ŸŽจ Final Touches

  • I ran the hooks included in the pre-commit config.

Settings | Logs | CodeBeaver

@MagMueller MagMueller merged commit 00aeabd into main Feb 13, 2025
2 checks passed
@codebeaver-ai codebeaver-ai bot deleted the codebeaver/fix/sensitive_data_in_history_step-706 branch February 13, 2025 16:03
AryamanParida pushed a commit to AryamanParida/browser-use that referenced this pull request Mar 7, 2025
โ€ฆnsitive_data_in_history_step-706

Fix Add `sensitive_data` parameter to `multi_act` in rerun_history - Unit Tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant