You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature Request: Viewport Size Configuration in browser_navigate
Description
I'd like to suggest adding viewport size configuration parameters to the browser_navigate command. Currently, there's no direct way to specify the browser viewport dimensions when navigating to a URL. Adding this capability would enhance testing flexibility, especially for responsive designs.
Use Cases
Testing responsive designs across different screen sizes (mobile, tablet, desktop)
Ensuring consistent screenshots/snapshots across environments
Creating more realistic examples for documentation
Simplifying test workflows by setting viewport dimensions at navigation time
Proposed Implementation
Add optional parameters to the browser_navigate function:
width: The viewport width in pixels (default could remain as current implementation)
height: The viewport height in pixels (default could remain as current implementation)
Flexibility: Allows testing across different device form factors with a single command
Efficiency: Reduces the need for separate viewport adjustment commands
User Experience: More intuitive for demonstrating responsive behaviors
Consistency: Provides standardized viewport control across different sessions
Implementation Complexity
This feature should be relatively straightforward to implement as Playwright already supports viewport size manipulation through its built-in APIs (page.setViewportSize() method).
I'd be happy to provide more details or collaborate on implementing this feature if there's interest.
The text was updated successfully, but these errors were encountered:
Feature Request: Viewport Size Configuration in browser_navigate
Description
I'd like to suggest adding viewport size configuration parameters to the
browser_navigate
command. Currently, there's no direct way to specify the browser viewport dimensions when navigating to a URL. Adding this capability would enhance testing flexibility, especially for responsive designs.Use Cases
Proposed Implementation
Add optional parameters to the
browser_navigate
function:width
: The viewport width in pixels (default could remain as current implementation)height
: The viewport height in pixels (default could remain as current implementation)Example usage:
Benefits
Implementation Complexity
This feature should be relatively straightforward to implement as Playwright already supports viewport size manipulation through its built-in APIs (page.setViewportSize() method).
I'd be happy to provide more details or collaborate on implementing this feature if there's interest.
The text was updated successfully, but these errors were encountered: