Testing Whiz Recorder Addon

Testing Whiz Recorder Addon

TestingWhiz addon helps TestingWhiz to record the test case steps into its test editor window. TestingWhiz, being a codeless test automation tool, comes with a FAST Automation Engine to help you create automated test cases.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Testing Whiz",
  "description": "A functional test automation companion for software quality engineers",
  "version": "3",
  "icons": {
    "128": "whiz.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "TwizTention"
  },
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "background.js",
      "contextMenu.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://localhost/*"
      ],
      "js": [
        "engine.js",
        "listener.js",
        "jquery-3.2.1.min.js",
        "WelcomePage.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.html",
    "*.js"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "notifications",
    "webNavigation",
    "<all_urls>",
    "contextMenus",
    "*://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{2a7f4258-1bec-43a2-93be-a72bcd396ff4}"
    }
  }
}