jambeljnbnfbkcpnoiaedcabbgmnnlcd
Playwright as a chrome extension. You can record using Playwright Record directly on your browser. Just attach the tabs you want to… Playwright as a chrome extension. You can record using Playwright Record directly on your browser. Just attach the tabs you want to record, by using the context menu or the action button. It's now possible to play your recorded script, and record assertions.
Playwright Recorder
Record browser actions and generate Playwright test scripts in JavaScript, TypeScript, Python, Java, and C# (.NET). Playwright Recorder is a powerful Chrome extension that allows you to record browser interactions and automatically generate Playwright test scripts in JavaScript, TypeScript, Python, Java, and C# (.NET). It is perfect for QA engineers, developers, and automation testers who want to create reliable automated tests without writing code manually. • 🌙 Dark Mode - Toggle between light and dark themes with your preference saved between sessions. • ⏸ Pause & Resume - Pause recording mid-session to handle popups or manual steps, then resume without losing any recorded actions. • 🏷️ Step Labels - Insert named markers between actions (e.g. "Login flow", "Fill form"). Labels appear as readable comments in the generated script. • ✅ Auto-Assertions - Automatically inserts URL assertions after every navigation step so your tests validate page state with zero extra work. • 🗑 Per-Action Delete - Hover over any recorded action and click × to remove it individually. No need to clear everything and re-record. • 📋 Copy to Clipboard - Copy the generated script instantly without exporting to a file first. • 🔔 Toast Notifications - Real-time feedback for every action — recording started, action removed, script copied, export complete. • Multi-Language Support - Generate test scripts in JavaScript, TypeScript, Python, Java, or C# (.NET) with a simple dropdown selection. • Session Persistence - Save authentication state (cookies + localStorage) to skip login flows. Load saved states to instantly authenticate in tests without repeating login steps. • Network Recording - Capture HTTP requests and automatically generate page.route() mocks. Perfect for testing without hitting real APIs or creating deterministic tests. • ARIA Selectors - Generate accessibility-first selectors using getByRole() and ARIA attributes. These selectors are more resilient to UI changes and improve test stability. • Mobile Emulation - Select from popular devices (iPhone, iPad, Pixel) to generate tests with proper viewport and user agent configuration for mobile testing. • One-Click Recording - Start recording your browser actions with a single click. • Accurate Selectors - Automatically generates robust CSS selectors that work even when the page structure changes. • Multi-Tab Support - Records actions across different tabs and windows. • Navigation Tracking - Captures all page navigations and URL changes automatically. • Real-Time Preview - See your Playwright script generated in real-time as you interact with web pages. • Custom Filename - Name your test scripts with the correct file extension automatically applied. • Resizable Interface - Adjust the panels to focus on either recorded actions or generated code. • Export Ready Scripts - Download complete, ready-to-run Playwright scripts with proper syntax. • Install the extension and click on its icon in your Chrome toolbar. • Open the recorder window by clicking "Open Recorder." • Select your preferred programming language (JavaScript, TypeScript, Python, Java, or C# (.NET)). • (Optional) Toggle Dark Mode from the top-right for a comfortable recording environment. • (Optional) Save authentication state by clicking "Save Auth State" if your site requires login. • (Optional) Enable "Record Network" to capture API calls for mocking. • (Optional) Enable "Aria Selectors" for more resilient accessibility-based selectors. • (Optional) Enable "Auto Assertions" to auto-insert URL checks after every navigation. • (Optional) Select a mobile device from the "Device" dropdown for mobile testing. • Click the green "Start" button to begin recording. • Interact with your website normally by clicking links, filling forms, and navigating between pages. • Use Pause to temporarily stop capturing without losing recorded actions. • Add Labels to annotate sections of your test flow. • Delete any unwanted action with the × button on hover. • Stop recording when finished. • Copy the script directly or customize the filename and click Export. • Run the exported script using Playwright in your automation project. Playwright Recorder generates scripts using the official Playwright API, making them compatible with any Playwright project. The scripts are ready to use without modifications and follow best practices for reliable automation. The extension works on any website without requiring any special configuration. It is designed to be lightweight and non-intrusive, ensuring your browsing experience is not affected. • QA Engineers automating regression tests • Developers creating end-to-end tests • Product teams validating user journeys • Anyone looking to save time on test automation • Teams working with multiple programming languages • .NET developers building automated testing workflows The extension generates complete, runnable test scripts in your chosen language: JavaScript: Uses native Playwright JS API with async/await patterns TypeScript: Includes proper type annotations and error handling Python: Follows Python conventions with async Playwright API Java: Implements Java-specific Playwright patterns C# (.NET): Uses modern C# async/await with proper resource disposal These scripts include all recorded steps such as navigations, clicks, form inputs, and can be directly executed within any Playwright automation framework. SecuriScan - Web Security Analyzer Find security vulnerabilities, check headers, analyze your web apps → https://chromewebstore.google.com/detail/securiscan-web-security-a/ngiloibpcojbjpkpkkohmliamfhmanm Vajra AI - AI Coding Assistant AI-powered code generation and testing for VS Code → https://marketplace.visualstudio.com/items?itemName=AshishSharda.vajra
Playwright Locator Assistant
Instantly generate and verify the best Playwright locators for any element on the page. Playwright Locator Assistant helps QA engineers and developers generate, verify, and manage Playwright locators directly from the browser — no DevTools diving, no manual selector writing. ───────────────────────────────────────── GENERATE THE BEST LOCATOR INSTANTLY ───────────────────────────────────────── Click any element on the page to capture it, or use the keyboard shortcut (Alt+Shift+L on Windows/Linux, ⌘+Shift+L on Mac) to lock in the element under your cursor without clicking — keeping dropdowns, menus, and hover states open. The extension automatically picks the most robust Playwright strategy available, in priority order: • getByTestId — data-testid, data-cy, data-qa, data-test, data-automation-id, data-test-id • getByRole with accessible name — buttons, links, headings, inputs, and more • getByLabel — for form controls associated with a • getByPlaceholder, getByAltText, getByTitle • Native dropdowns — generates a ready-to-use selectOption() call • Table cells — row-anchored via .filter({ hasText }) so locators survive row reordering • Chained ancestor locators — when no global unique match exists • CSS selector fallback — with a clear warning to add a test ID ───────────────────────────────────────── SKIPS DYNAMIC VALUES AUTOMATICALLY ───────────────────────────────────────── Exchange rates, prices, dates, times, and counters are detected at capture time and excluded from the locator. Your tests stay green across data refreshes. ───────────────────────────────────────── UNIQUENESS BADGE ───────────────────────────────────────── Every captured locator is checked against the current page instantly: ✓ 1 — unique match, safe to use ⚠ 3 — not unique, consider a more specific locator ✗ 0 — no match found (page state may have changed) ───────────────────────────────────────── ALTERNATIVE STRATEGIES ───────────────────────────────────────── Expand the "Alternatives" panel below any captured locator to see up to 5 other valid strategies for the same element — each with its own Copy button. ───────────────────────────────────────── VARIABLES FOR PARAMETERISED TESTS ───────────────────────────────────────── One click on the { } button converts table cell values, row identifiers, and select options into named variables (rowText, cellValue, optionText in JS; row_text, cell_value, option_text in Python) — ready to paste into a parametrised test function. ───────────────────────────────────────── VERIFY ANY LOCATOR ───────────────────────────────────────── Paste any locator into the Verify section and the extension highlights all matching elements on the page with a red outline. Supports: • Playwright syntax: getByRole, getByLabel, getByText, getByPlaceholder, getByAltText, getByTitle, getByTestId, locator() • Chained locators: page.getByRole("nav").getByRole("link", { name: "Home" }) • XPath: //div[@id="main"] or xpath=... • Playwright shorthands: text=Submit, css=.my-class • Plain CSS selectors • Python snake_case: get_by_role, get_by_label, select_option, etc. ───────────────────────────────────────── LOCATOR HISTORY ───────────────────────────────────────── The last 8 captured locators are saved and shown in the popup. Each entry has its own Copy button, so you can build out a full test scenario without losing earlier work. ───────────────────────────────────────── PYTEST & JAVASCRIPT SUPPORT ───────────────────────────────────────── Toggle between Pytest (Python) and JavaScript at any time. Every locator — including options, chaining, and exact flags — is formatted correctly for your chosen framework. ───────────────────────────────────────── BUILT-IN WARNINGS ───────────────────────────────────────── Elements inside an or Shadow DOM are flagged inline so you know exactly what extra step is needed (frameLocator() or a pierce: selector) before the locator will work in your test. ───────────────────────────────────────── HOW TO USE ───────────────────────────────────────── 1. Open the extension popup on any page. 2. Click "Pick Element" and click any element on the page, OR hover over an element and press Alt+Shift+L (⌘+Shift+L on Mac) to capture it instantly. 3. The locator appears in an overlay on the page and in the popup. Copy it directly. 4. To verify a locator, paste it into the "Verify Selector" box and click "Check Selector". 5. Recent locators are saved in section 3 of the popup for quick access. For native dropdowns: Click the dropdown to open it, press Escape to close it (without selecting), then press the shortcut. The locator is generated from the currently selected value — replace it with your desired option in the test.
Playwright Chrome Recorder
Playwright extension for DevTools that allows you to export tests directly from the Recorder panel. Records a user session and generates Playwright code for automation and testing purposes. Playwright Recorder Playwright Recorder is a developer tool that records user interaction within a web application and generates Playwright scripts to allow the developer to replicate that particular session. This will speed up your development cycle by facilitating the creation of unit and integration tests. Getting Started Click 'Add to Chrome'. That's it! Once you see our icon at the upper-right of your browser window, you are ready to start generating Playwright scripts. Features This extension will allow you to: * Record clicks, typing, submits, and navigation in the browser. * See the scripts render live as they are generated. * Delete accidental actions. * Reorder actions as necessary. * Pause and resume recording within a single session. * Record navigation within a domain. * Copy the generated code to your clipboard. Usage * Open the extension and click 'Start Recording' to begin recording actions. * Click links, submit forms, etc. * Check your saved actions by opening the popup at any time. * Click 'Stop Recording' to stop recording. From there, you will have the option to resume recording, reset, or copy your generated code to your clipboard. * You can also use keyboard shortcuts: On Macs: - ctrl + R to start and stop recording - ctrl + G to reset On PCs and Linux: - alt + R to start and stop recording - alt + G to reset
Puppeteer IDE
Develop, test and execute puppeteer scripts from browser's developer tools. For more information related to usage, privacy, faqs checkout. :- https://github.com/gajananpp/puppeteer-ide-extension