Playwright Pro — BrowserStack
Run Playwright tests on BrowserStack cloud infrastructure.
$skillfish add ~skills/playwright-pro-browserstack Real Conversations
See how the Playwright Pro — BrowserStack skill responds to actual requests. These are representative examples of what your AI agent will produce.
We need to run our suite on BrowserStack before our enterprise release. We support Chrome, Firefox, and Safari on Windows 11 and macOS. BROWSERSTACK_USERNAME and BROWSERSTACK_ACCESS_KEY are set.
Credentials confirmed. Updating playwright.config.ts with BrowserStack connect options. This skill includes executable scripts — I'll need your permission before running them.
Updated playwright.config.ts — adds BrowserStack projects when BROWSERSTACK_USERNAME is present:
const isBS = !!process.env.BROWSERSTACK_USERNAME;
projects: isBS ? [
{
name: 'chrome@latest:Windows 11',
use: { connectOptions: { wsEndpoint: bsUrl('chrome', 'latest', 'Windows', '11') } },
},
{
name: 'firefox@latest:Windows 11',
use: { connectOptions: { wsEndpoint: bsUrl('playwright-firefox', 'latest', 'Windows', '11') } },
},
{
name: 'webkit@latest:OS X Ventura',
use: { connectOptions: { wsEndpoint: bsUrl('playwright-webkit', 'latest', 'OS X', 'Ventura') } },
},
// + Edge on Windows 11, Safari on Sonoma
] : localProjects,
Script added:
"test:e2e:cloud": "playwright test --project='chrome@*' --project='firefox@*' --project='webkit@*'"
Tests stream results back in real time. Every session gets a video recording and network log on the BrowserStack dashboard.
Run a smoke test on 5 critical paths across all 5 browsers to verify the connection?
Get Started
How to install and use this skill in your preferred environment.
Skills are designed for AI coding agents (Claude Code, Cursor, Windsurf) and IDE-based workflows where the agent can read files, run scripts, and act on your codebase. Web-based AI can use the knowledge and frameworks, but won't have tool access.
Models & Context
Which AI models and context windows work best with this skill.
Recommended Models
Larger models produce more detailed, production-ready outputs.
Context Window
This skill's SKILL.md is typically 3–10 KB — fits in any modern context window.
All current frontier models (Claude, GPT, Gemini) support 100K+ context. Use the full window for complex multi-service work.
Pro tips for best results
Be specific
Include numbers — users, budget, RPS — so the skill can size the architecture.
Share constraints
Compliance needs, team size, and existing stack all improve the output.
Iterate
Start with a high-level design, then ask follow-ups for IaC, cost analysis, or security review.
Combine skills
Pair with companion skills below for end-to-end coverage.
Ready to try Playwright Pro — BrowserStack?
Install the skill and start getting expert-level guidance in your workflow — any agent, any IDE.
$skillfish add ~skills/playwright-pro-browserstack