-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Browser: Add resize capability #8099
Copy link
Copy link
Open
Labels
feat: browserIssues and PRs related to the browser runnerIssues and PRs related to the browser runnerp2-nice-to-haveNot breaking anything but nice to have (priority)Not breaking anything but nice to have (priority)
Metadata
Metadata
Assignees
Labels
feat: browserIssues and PRs related to the browser runnerIssues and PRs related to the browser runnerp2-nice-to-haveNot breaking anything but nice to have (priority)Not breaking anything but nice to have (priority)
Type
Projects
Status
P2 - 2
Clear and concise description of the problem
I have a div that supports resizing and have this div monitored by a resize observer. From what I can tell, I have no means of testing this behavior.
Looking at playwright and webdriver, they have methods that move the cursor, hover and click the mouse down. I would like to see this functionality in vitest.
Suggested solution
page.mouse.down();
page.mouse.move(x, y)
page.mouse.up();
Alternative
No response
Additional context
No response
Validations