
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@playmatic/sdk
Advanced tools
Test SDK for creating self-healing E2E tests that combine natural language with cached steps.
# npm
npm install @playmatic/sdk
# pnpm
pnpm add @playmatic/sdk
# yarn
yarn add @playmatic/sdk
Playmatic tests are Playwright tests enhanced with AI helpers for robust, self-healing E2E testing:
import { aiClick, aiVerify, env } from '@playmatic/sdk';
import { test, expect } from '@playwright/test';
test('User can login and access dashboard', async ({ page }) => {
await test.step('Navigate to login', async () => {
// Use deterministic Playwright for stable navigation
await page.goto(env.baseUrl + '/login');
});
await test.step('Verify login form with AI', async () => {
// Use AI for visual verification
await aiVerify('login form with email and password fields is visible', page);
});
await test.step('Submit login', async () => {
// Use AI to click elements that might have brittle selectors
await aiClick('login button', page);
await expect(page).toHaveURL(/dashboard/);
});
});
When selectors break or UI changes, AI computer vision automatically figures out how to accomplish the intent using visual understanding.
Complete guides, examples, and API reference at docs.playmatic.ai
FAQs
Environment management and AI helpers for Playwright tests
We found that @playmatic/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.