WebdriverIO Debugger
Start, Stop and step through WebdriverIO tests
WebdriverIO Debuggerとは何ですか?
WebdriverIO Debuggerはwpbrockによって開発されたChromeの拡張機能で、その主な機能は「Start, Stop and step through WebdriverIO tests」です。
拡張機能のスクリーンショット
WebdriverIO Debugger拡張機能のCRXファイルをダウンロード
WebdriverIO Debugger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Pause, play and step through WebdriverIO tests
拡張機能の基本情報
名前 | WebdriverIO Debugger |
ID | gllhbgehjoimdepaokeloljejokfdmof |
公式URL | https://chromewebstore.google.com/detail/webdriverio-debugger/gllhbgehjoimdepaokeloljejokfdmof |
説明 | Start, Stop and step through WebdriverIO tests |
ファイルサイズ | 7.7 KB |
インストール数 | 32 |
現在のバージョン | 0.0.1 |
最終更新日 | 2019-07-17 |
公開日 | 2019-07-13 |
開発者 | wpbrock |
支払い方法 | free |
対応言語 | 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 } |