TestWise Recorder

TestWise Recorder

Record user actions on web pages into Selenium WebDriver scripts in Ruby, Python, JavaScript, Java, C# and Watir

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TestWise Recorder",
  "description": "Record user actions on web pages into Selenium WebDriver scripts in Ruby, Python, JavaScript, Java, C# and Watir",
  "version": "0.5.2",
  "author": "Zhimin Zhan",
  "homepage_url": "https://testwisely.com/agileway-recorder",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_menu16.png",
      "32": "icons/icon_menu32.png",
      "64": "icons/icon_menu64.png"
    },
    "default_title": "TestWise Recorder"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/jquery-3.3.1.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "assets/jquery-3.3.1.min.js",
      "background.js"
    ],
    "persistent": false
  }
}