Spiel-Master
🌐 CC0
Develop a first-person shooter game using Three.js and JavaScript.
CodingSchreibenKreativität
--- name: web-application-testing-skill description: A toolkit for interacting with and testing local web applications using Playwright.
This skill enables comprehensive testing and debugging of local web applications using Playwright automation.
Use this skill when you need to:
// Navigate to a page and verify title
await page.goto('http://localhost:3000');
const title = await page.title();
console.log('Page title:', title);
// Fill out and submit a form
await page.fill('#username', 'testuser');
await page.fill('#password', 'password123');
await page.click('button[type="submit"]');
await page.waitForURL('**/dashboard');
// Capture a screenshot for debugging
await page.screenshot({ path: 'debug.png', fullPage: true });
await page.waitForSelector('#element-id', { state: 'visible' });
const exists = await page.locator('#element-id').count() > 0;
page.on('console', msg => console.log('Browser log:', msg.text()));
try {
await page.click('#button');
} catch (error) {
await page.screenshot({ path: 'error.png' });
throw error;
}
Develop a first-person shooter game using Three.js and JavaScript.
Build a mindfulness meditation timer using HTML5, CSS3, and JavaScript.
Build a developer-focused code snippet manager using HTML5, CSS3, and JavaScript.
ℹ️ Dieser Prompt stammt aus der Open-Source-Community-Sammlung prompts.chat und steht unter der CC0-Lizenz (Public Domain). Kostenlos für jeden Einsatz.