Automation Wizard

Automation Wizard

Automatically generate unique test ids for all html elements in a web page for use with automation test tools like Selenium.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "js": [
        "test-id-generator.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "name": "Automation Wizard",
  "description": "Automatically generate unique test ids for all html elements in a web page for use with automation test tools like Selenium.",
  "version": "1.1.1",
  "author": "Hashif Habeeb ([email protected])",
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}