Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
cypress-plugin-playwright
Advanced tools
This Cypress plugin allows you to run playwright code within cypress runner
Warning ⚠️: This repo is mainly used for POC. It lacks so many utilities. Do not attempt to use it directly as it is. It is possible that I may come back to this and redo this the right way, but I highly doubt it.
This Cypress plugin allows you to run playwright code within the cypress runner using the same chromium-family instance started by cypress. It is inspired by https://github.com/microsoft/playwright/issues/17056 to work around some cypress limitations and awkward ideologies
This plugin does not assume your cypress and/or playwright versions. Install them separately
If you are using cypress<10.0.0
, you will have to reverse migrate the code below,
see https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-version-10-0
npm i cypress-plugin-playwright
// cypress.config.js
import {defineConfig} from 'cypress';
import playwrightPlugin from "cypress-plugin-playwright/playwrightPlugin.js";
export default defineConfig({
// ...
e2e: {
setupNodeEvents(on, config) {
// ...
playwrightPlugin(on, config);
// ...
},
// ...
},
// ...
});
Below demonstrated a mixed it block with cypress and playwright.
If you are using this plugin seriously, you probably want to add a wrapper to the cy.task()
to simplify the syntax
// test.cy.js
describe('Run Playwright code with Cypress', () => {
it('passes', () => {
cy.visit('https://example.cypress.io');
async function playwrightCodeBlock(frame) {
const locator = frame.locator('a:has-text("screenshot")');
await locator.scrollIntoViewIfNeeded();
await locator.click();
}
// Unfortunately the `toString()` is needed
cy.task('runPlaywright', playwrightCodeBlock.toString());
cy.url().should('contain', 'misc');
cy.get('body').should('contain', 'cypress/screenshots/my-image.png');
cy.get('body').contains('cy.focused()').click();
cy.get('body').contains('Get the DOM element that is currently focused.').should('exist');
});
});
FAQs
This Cypress plugin allows you to run playwright code within cypress runner
The npm package cypress-plugin-playwright receives a total of 0 weekly downloads. As such, cypress-plugin-playwright popularity was classified as not popular.
We found that cypress-plugin-playwright demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.