Testing Playground: Enter URL Manually - Opens an input box to paste very long URLs
Testing Playground: Open Last URL - Reopens the last Testing Playground URL
Tips
The extension shows a status bar item (link icon) when a URL has been opened - click it to reopen
Use "Enter URL Manually" if the URL is too long and gets truncated when copying from terminal
The webview has an "Open in Browser" button if you need the full browser experience
Requirements
VS Code 1.106.3 or higher
Jest tests using @testing-library with screen.logTestingPlaygroundURL()
Example Workflow
// In your test file
import { render, screen } from '@testing-library/react';
test('should find element', () => {
render(<MyComponent />);
screen.logTestingPlaygroundURL();
// URL appears in terminal, copy it and run "Open from Clipboard"
});