WebdriverIO Debugger
Start, Stop and step through WebdriverIO tests
What is WebdriverIO Debugger?
WebdriverIO Debugger is a Chrome extension developed by wpbrock, and its main feature is "Start, Stop and step through WebdriverIO tests".
Extension Screenshots
Download WebdriverIO Debugger Extension CRX File
Download WebdriverIO Debugger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Pause, play and step through WebdriverIO tests
Extension Basic Information
Name | WebdriverIO Debugger |
ID | gllhbgehjoimdepaokeloljejokfdmof |
Official URL | https://chromewebstore.google.com/detail/webdriverio-debugger/gllhbgehjoimdepaokeloljejokfdmof |
Description | Start, Stop and step through WebdriverIO tests |
File Size | 7.7 KB |
Installation Count | 32 |
Current Version | 0.0.1 |
Last Updated | 2019-07-17 |
Publish Date | 2019-07-13 |
Developer | wpbrock |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebdriverIO Debugger", "version": "0.0.1", "description": "Start, Stop and step through WebdriverIO tests", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": "images\/wdio-icon.png", "default_title": "WebdriverIO Debugger" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*\/*" ] } ], "manifest_version": 2 } |