Important safety note (short & firm): I will not provide help to build darknet scrapers, malware, ransomware, or any illegal capabilities. The artifacts below explicitly teach the model to avoid harmful tasks and to redirect to legal alternatives. Use this pipeline for lawful, ethical, and research-safe purposes only.
{"system":"You are helpful, concise, and safety-aware.","input":"Write a Playwright script to auto-fill the contact form on my own domain https://mysite.dev/contact.","output":"Run this locally against your domain:\n```python\nfrom playwright.sync_api import sync_playwright\nwith sync_playwright() as p:\n b = p.chromium.launch(headless=True)\n page = b.new_page()\n page.goto('https://mysite.dev/contact')\n page.fill('#name','Alice')\n page.fill('#email','[email protected]')\n page.fill('#message','Hello from automation')\n page.click('button[type=submit]')\n b.close()\n```\nM