
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@jfkz/dappwright
Advanced tools
E2E testing for dApps using Playwright + MetaMask & Coinbase Wallet
$ npm install -s @tenkeylabs/dappwright
$ yarn add @tenkeylabs/dappwright
# test.spec.ts
import { BrowserContext, expect, test as baseTest } from "@playwright/test";
import dappwright, { Dappwright, MetaMaskWallet } from "@tenkeylabs/dappwright";
export const test = baseTest.extend<{
context: BrowserContext;
wallet: Dappwright;
}>({
context: async ({}, use) => {
// Launch context with extension
const [wallet, _, context] = await dappwright.bootstrap("", {
wallet: "metamask",
version: MetaMaskWallet.recommendedVersion,
seed: "test test test test test test test test test test test junk", // Hardhat's default https://hardhat.org/hardhat-network/docs/reference#accounts
headless: false,
});
// Add Hardhat as a custom network
await wallet.addNetwork({
networkName: "Hardhat",
rpc: "http://localhost:8546",
chainId: 31337,
symbol: "ETH",
});
await use(context);
},
wallet: async ({ context }, use) => {
const metamask = await dappwright.getWallet("metamask", context);
await use(metamask);
},
});
test.beforeEach(async ({ page }) => {
await page.goto("http://localhost:8080");
});
test("should be able to connect", async ({ wallet, page }) => {
await page.click("#connect-button");
await wallet.approve();
const connectStatus = page.getByTestId("connect-status");
expect(connectStatus).toHaveValue("connected");
await page.click("#switch-network-button");
const networkStatus = page.getByTestId("network-status");
expect(networkStatus).toHaveValue("31337");
});
There are a number of different ways integrate dAppwright into your test suite. For some other examples, please check out dAppwright's example application repo.
This project is a fork of the Chainsafe and Decentraland version of dAppeteer.
FAQs
End-to-End (E2E) testing for dApps using Playwright + MetaMask
The npm package @jfkz/dappwright receives a total of 0 weekly downloads. As such, @jfkz/dappwright popularity was classified as not popular.
We found that @jfkz/dappwright 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.