PluginBench
Skill
Pass
Audit score 90

migrate

alirezarezvani/claude-skills

Migrate Cypress or Selenium test suites to Playwright with file-by-file conversion.

What is migrate?

Automates conversion of Cypress or Selenium test files to Playwright syntax and best practices. Detects your source framework, assesses migration scope, and converts tests sequentially or in parallel depending on project size. Use when switching test frameworks or modernizing legacy test automation.

  • Detects Cypress or Selenium test suites automatically or from specified file paths
  • Assesses migration scope and categorizes effort as small, medium, or large
  • Converts test syntax including locators, assertions, interactions, and wait strategies
  • Upgrades selectors to Playwright best practices (role-based, test IDs, text matching)
  • Migrates custom commands, fixtures, and page objects to Playwright equivalents
  • Verifies each converted file and reports unconvertible tests requiring manual work

How to install migrate

npx skills add https://github.com/alirezarezvani/claude-skills --skill migrate
Prerequisites
  • Cypress or Selenium test suite in the project
  • Node.js and npm installed
  • Playwright not yet configured (skill will run /pw:init if needed)
Claude Code
Cursor
Windsurf
Cline

How to use migrate

  1. 1.Run the skill with `from cypress` or `from selenium`, or provide a file path to convert
  2. 2.Review the migration assessment showing file count and estimated effort
  3. 3.Allow the skill to set up Playwright if not already present
  4. 4.Confirm conversion of test files (sequential for small projects, batched for large ones)
  5. 5.Review converted files and fix any manual intervention flags
  6. 6.Verify converted tests run with `npx playwright test`
  7. 7.Confirm removal of old dependencies and CI workflow updates

Use cases

Good for
  • Migrate a Cypress test suite to Playwright for better performance and cross-browser support
  • Convert Selenium WebDriver tests to Playwright's simpler API and modern locator strategies
  • Upgrade legacy test automation in a large project using parallel batch conversion
  • Modernize custom Cypress commands and fixtures as Playwright fixtures and helpers
  • Switch test frameworks while preserving test coverage and adding role-based locators
Who it's for
  • QA engineers and test automation specialists
  • Development teams modernizing test infrastructure
  • Projects migrating from Cypress or Selenium to Playwright
  • Teams wanting to upgrade selectors to accessibility-based locators

migrate FAQ

What if my tests use custom Cypress commands?

Custom Cypress commands are converted to Playwright fixtures using `test.extend()` or helper functions. The skill maps the command logic to equivalent Playwright APIs.

Can it handle Selenium in Python?

Yes. The skill detects `.py` test files with Selenium imports and converts them using Selenium-to-Playwright mappings, though output will follow Playwright's JavaScript/TypeScript conventions.

What happens if a test can't be auto-converted?

The skill flags tests requiring manual intervention in the conversion summary and explains what needs to be fixed. Most standard patterns are handled automatically.

Does it update my CI/CD pipeline?

Yes. After conversion, the skill updates CI workflows to use Playwright test commands instead of Cypress or Selenium runners, and asks for confirmation before deleting old config files.

How long does migration take for a large project?

Large projects (31+ files) use parallel batch conversion with `/batch` for speed. The skill provides an effort estimate (small/medium/large) upfront based on file count and complexity.

Full instructions (SKILL.md)

Source of truth, from alirezarezvani/claude-skills.


name: "migrate" description: >- Migrate from Cypress or Selenium to Playwright. Use when user mentions "cypress", "selenium", "migrate tests", "convert tests", "switch to playwright", "move from cypress", or "replace selenium".

Migrate to Playwright

Interactive migration from Cypress or Selenium to Playwright with file-by-file conversion.

Input

$ARGUMENTS can be:

  • "from cypress" — migrate Cypress test suite
  • "from selenium" — migrate Selenium/WebDriver tests
  • A file path: convert a specific test file
  • Empty: auto-detect source framework

Steps

1. Detect Source Framework

Use Explore subagent to scan:

  • cypress/ directory or cypress.config.ts → Cypress
  • selenium, webdriver in package.json deps → Selenium
  • .py test files with selenium imports → Selenium (Python)

2. Assess Migration Scope

Count files and categorize:

Migration Assessment:
- Total test files: X
- Cypress custom commands: Y
- Cypress fixtures: Z
- Estimated effort: [small|medium|large]
SizeFilesApproach
Small (1-10)Convert sequentiallyDirect conversion
Medium (11-30)Batch in groups of 5Use sub-agents
Large (31+)Use /batchParallel conversion with /batch

3. Set Up Playwright (If Not Present)

Run /pw:init first if Playwright isn't configured.

4. Convert Files

For each file, apply the appropriate mapping:

Cypress → Playwright

Load cypress-mapping.md for complete reference.

Key translations:

cy.visit(url)           → page.goto(url)
cy.get(selector)        → page.locator(selector) or page.getByRole(...)
cy.contains(text)       → page.getByText(text)
cy.find(selector)       → locator.locator(selector)
cy.click()              → locator.click()
cy.type(text)           → locator.fill(text)
cy.should('be.visible') → expect(locator).toBeVisible()
cy.should('have.text')  → expect(locator).toHaveText(text)
cy.intercept()          → page.route()
cy.wait('@alias')       → page.waitForResponse()
cy.fixture()            → JSON import or test data file

Cypress custom commands → Playwright fixtures or helper functions Cypress plugins → Playwright config or fixtures before/beforeEachtest.beforeAll() / test.beforeEach()

Selenium → Playwright

Load selenium-mapping.md for complete reference.

Key translations:

driver.get(url)                    → page.goto(url)
driver.findElement(By.id('x'))     → page.locator('#x') or page.getByTestId('x')
driver.findElement(By.css('.x'))   → page.locator('.x') or page.getByRole(...)
element.click()                    → locator.click()
element.sendKeys(text)             → locator.fill(text)
element.getText()                  → locator.textContent()
WebDriverWait + ExpectedConditions → expect(locator).toBeVisible()
driver.switchTo().frame()          → page.frameLocator()
Actions                            → locator.hover(), locator.dragTo()

5. Upgrade Locators

During conversion, upgrade selectors to Playwright best practices:

  • #idgetByTestId() or getByRole()
  • .classgetByRole() or getByText()
  • [data-testid]getByTestId()
  • XPath → role-based locators

6. Convert Custom Commands / Utilities

  • Cypress custom commands → Playwright custom fixtures via test.extend()
  • Selenium page objects → Playwright page objects (keep structure, update API)
  • Shared helpers → TypeScript utility functions

7. Verify Each Converted File

After converting each file:

npx playwright test <converted-file> --reporter=list

Fix any compilation or runtime errors before moving to the next file.

8. Clean Up

After all files are converted:

  • Remove Cypress/Selenium dependencies from package.json
  • Remove old config files (cypress.config.ts, etc.)
  • Update CI workflow to use Playwright
  • Update README with new test commands

Ask user before deleting anything.

Output

  • Conversion summary: files converted, total tests migrated
  • Any tests that couldn't be auto-converted (manual intervention needed)
  • Updated CI config
  • Before/after comparison of test run results

Related skills

More from alirezarezvani/claude-skills and the wider catalog.

MSms365-tenant-manager logo

ms365-tenant-manager

alirezarezvani/claude-skills

Microsoft 365 tenant administration for Global Administrators. Automate M365 tenant setup, Office 365 admin tasks, Azure AD user management, Exchange Online configuration, Teams administration, and security policies. Generate PowerShell scripts for bulk operations, Conditional Access policies, license management, and compliance reporting. Use for M365 tenant manager, Office 365 admin, Azure AD users, Global Administrator, tenant configuration, or Microsoft 365 automation.

745 installs
PMpm-skills logo

pm-skills

alirezarezvani/claude-skills

Router for 8 bundled PM skills: pick the right one for sprint health, Jira workflows, Confluence, admin, templates, meetings, or comms.

1.9k installs
POpostmortem logo

postmortem

alirezarezvani/claude-skills

Blameless 5-Whys analysis to extract learning from failures and build a change register.

1.4k installsAudited
PRproduct-manager-toolkit logo

product-manager-toolkit

alirezarezvani/claude-skills

Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use when prioritizing features, synthesizing user research, writing requirement documentation, or developing product strategy.

831 installs
PRproduct-skills logo

product-skills

alirezarezvani/claude-skills

Router for 12 product skills: prioritization, OKRs, UX research, design, analytics, experiments, discovery, roadmaps, and scaffolding.

1.9k installs
PRproduct-strategist logo

product-strategist

alirezarezvani/claude-skills

Strategic product leadership toolkit for Head of Product covering OKR cascade generation, quarterly planning, competitive landscape analysis, product vision documents, and team scaling proposals. Use when creating quarterly OKR documents, defining product goals or KPIs, building product roadmaps, running competitive analysis, drafting team structure or hiring plans, aligning product strategy across engineering and design, or generating cascaded goal hierarchies from company to team level.

787 installs