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

Fixed the screenshot flickering issue #740

Merged
merged 3 commits into from
Mar 25, 2025

Conversation

PaperBoardOfficial
Copy link
Contributor

Issue link:
#673
#663

If the user's monitor size is different from the default viewport size of playwright(which is 1280x720, then the playwright would resize the browser viewport to take screenshot.
I added the screen_resolution.py to dynamically set the playwright window size and window position using screen_info library.
Also, the screenshot_test.py file wasn't working, so i fixed it.

@entelligence-ai-reviews

Walkthrough

This update optimizes the browser setup by dynamically adjusting window size and position according to screen resolution and platform-specific offsets. It includes a new utility module for screen resolution, modifies context creation to disable viewport for better anti-detection, and refactors screenshot tests for enhanced reliability and compatibility across operating systems.

Changes

File(s) Summary
browser_use/browser/browser.py Added functions to set window size and position dynamically, incorporating screen resolution and platform-specific offsets.
browser_use/browser/context.py Disabled viewport in context creation to enhance anti-detection measures.
browser_use/browser/tests/screenshot_test.py Refactored to use asynchronous context management for improved test reliability.
browser_use/browser/utils/screen_resolution.py Introduced utility module for determining screen resolution and window adjustments.
Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @bot + *your message*
Example: @bot Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @bot + *feedback*
Example: @bot Do not comment on `save_auth` function !

Comment on lines 15 to 17
from screeninfo import get_monitors # Cross-platform library
monitor = get_monitors()[0] # Get primary monitor
return {"width": monitor.width, "height": monitor.height}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using get_monitors()[0] without checking list length could raise IndexError if no monitors are detected. Should add length check before accessing first element.

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
from screeninfo import get_monitors # Cross-platform library
monitor = get_monitors()[0] # Get primary monitor
return {"width": monitor.width, "height": monitor.height}
from screeninfo import get_monitors # Cross-platform library
monitors = get_monitors()
if not monitors:
return {"width": 0, "height": 0} # Default fallback if no monitors
monitor = monitors[0] # Get primary monitor
return {"width": monitor.width, "height": monitor.height}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the default 0, 0 though? I mean it's better than an index error, I guess, but if we pass back 0, 0 is that just going to break things or will it actually default to the pre-existing 1280x720? If not, does it cause an error? If so, then could/should we not just return 1280x720 for the sake of debugging logic flow?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default screen size is return {"width": 1920, "height": 1080}, it is standard for most laptops and monitors.
here's a list of standard screen sizes:

  • 1920 × 1080 (Full HD, 1080p) Most laptops & monitors (standard)
  • 1366 × 768 Older laptops, budget displays
  • 2560 × 1440 (1440p, QHD) High-end monitors, gaming setups
  • 3840 × 2160 (4K UHD) Premium displays, large screens
  • 1280 × 800 Some older MacBooks
  • 2560 × 1600 Modern MacBooks (MacBook Pro)
  • 3440 × 1440 Ultrawide monitors for gaming/productivity

but yes i'll add better error handling because in virtual environments, we can get indexerror.

fyi, 0,0 is default return for get_window_adjustments() function. it is the default one already present in code.

@PaperBoardOfficial
Copy link
Contributor Author

@gregpr07 @MagMueller pls review this PR

Copy link

@svaze30 svaze30 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works perfectly. 👍

@PaperBoardOfficial
Copy link
Contributor Author

@svaze30 I am glad it worked for you. I hope this PR gets merged.

@gaurav-cointab
Copy link

This works perfectly. 👍

@CLAassistant
Copy link

CLAassistant commented Mar 14, 2025

CLA assistant check
All committers have signed the CLA.

Comment on lines +200 to +201
f'--window-position={offset_x},{offset_y}',
f'--window-size={screen_size["width"]},{screen_size["height"]}',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
f'--window-position={offset_x},{offset_y}',
f'--window-size={screen_size["width"]},{screen_size["height"]}',
'--start-maximized',

Why not just start maximized?

This comment was marked as outdated.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PaperBoardOfficial for context they are only 2 guys and they got nearly 50 thousand stars and hundreds of thousands of messages within the span of a month, while actively fundraising setting up their company. I am working with them to go through all the PRs and give everyone the responses they deserve currently!

This comment was marked as outdated.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok I understand, I know it sucks when you put in a bunch of work and get no recognition. All I can say is don't take it too personally, no one is trying to ghost you intentionally, there are just tons of competing priorities.

@pirate pirate merged commit 90c0f40 into browser-use:main Mar 25, 2025
1 check passed
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.

7 participants