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

Feature request: Add viewport size parameters to browser_navigate command #5

Open
cocosar opened this issue Mar 22, 2025 · 1 comment · May be fixed by #92
Open

Feature request: Add viewport size parameters to browser_navigate command #5

cocosar opened this issue Mar 22, 2025 · 1 comment · May be fixed by #92
Assignees
Labels
backlog open to a pr

Comments

@cocosar
Copy link

cocosar commented Mar 22, 2025

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)

Example usage:

{
  `url`: `https://example.com`,
  `width`: `1920`,
  `height`: `800`
}

- Page URL: https://example.com/
- Page Title: Example Domain
- Page Snapshot
```yaml
- document [ref=s1e2]:
  - heading "Example Domain" [level=1] [ref=s1e5]
  - paragraph [ref=s1e6]: This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.
  - paragraph [ref=s1e7]:
    - link "More information..." [ref=s1e8]:
      - /url: https://www.iana.org/domains/example

Benefits

  1. Flexibility: Allows testing across different device form factors with a single command
  2. Efficiency: Reduces the need for separate viewport adjustment commands
  3. User Experience: More intuitive for demonstrating responsive behaviors
  4. 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.

@Skn0tt Skn0tt assigned Skn0tt and unassigned Skn0tt Mar 25, 2025
@pavelfeldman
Copy link
Member

I'll be supportive of the browser_resize command to keep it similar to what end user would do.

@pavelfeldman pavelfeldman added the backlog open to a pr label Mar 28, 2025
@Skn0tt Skn0tt self-assigned this Mar 31, 2025
@Skn0tt Skn0tt linked a pull request Mar 31, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backlog open to a pr
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants