Skip to main content

Supported Browsers and Viewport Presets

TestVibe runs browser tests through Playwright. The exact options available in a project come from its Playwright configuration, but most teams start with a small set of browser and viewport presets.

Browser Choices

BrowserUse it for
ChromiumDefault daily coverage for Chrome-like browsers.
FirefoxCross-browser checks for Firefox behavior.
WebKitSafari-like coverage, especially for layout and mobile-sensitive behavior.

Your project's Playwright configuration may define named projects such as chromium-desktop, mobile-webkit, staging-smoke, or debug. Choose the configuration that matches the coverage you want for the run.

Viewport Presets

PresetSizeUse it for
Mobile portrait390x844Phone layouts with narrow navigation and vertical flow.
Mobile landscape844x390Horizontal phone layouts and responsive menus.
Tablet820x1180Tablet navigation, sidebars, and touch-friendly layouts.
Desktop 1080p1920x1080Standard desktop validation.

Teams can also define custom viewports in Playwright configuration.

Choosing A Profile

GoalRecommended choice
Fast everyday validationChromium with desktop 1080p.
Check responsive layoutMobile portrait and tablet.
Reproduce a user reportMatch the user's browser and viewport as closely as possible.
Prepare for releaseRun the important tests across desktop, mobile, and the browsers your users rely on.