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 Pass sensitive_data to multi_act executed via rerun_history #706

Merged

Conversation

pppp606
Copy link
Contributor

@pppp606 pppp606 commented Feb 13, 2025

Issue:

Description:
This PR addresses issue #695 by ensuring that the sensitive_data argument is properly passed to multi_act when it is executed via rerun_history(). This change guarantees that sensitive data is correctly handled throughout the process.

Changes:

  • Updated multi_act—executed via rerun_history()—to properly receive the sensitive_data argument.

@pppp606 pppp606 marked this pull request as ready for review February 13, 2025 08:07
@pppp606 pppp606 changed the title Fix Add sensitive_data parameter to multi_act in rerun_history Fix Pass sensitive_data to multi_act executed via rerun_history (fixes #695) Feb 13, 2025
@pppp606 pppp606 changed the title Fix Pass sensitive_data to multi_act executed via rerun_history (fixes #695) Fix Pass sensitive_data to multi_act executed via rerun_history Feb 13, 2025
Copy link
Contributor

codebeaver-ai bot commented Feb 13, 2025

I opened a Pull Request with the following:

🔄 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 4619a95 into browser-use:main Feb 13, 2025
2 checks passed
AryamanParida pushed a commit to AryamanParida/browser-use that referenced this pull request Mar 7, 2025
…_history_step

Fix Pass sensitive_data to multi_act executed via rerun_history
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.

2 participants