E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
E2E Test Builderとは何ですか?
E2E Test BuilderはCuubasによって開発されたChromeの拡張機能で、その主な機能は「An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.」です。
拡張機能のスクリーンショット
E2E Test Builder拡張機能のCRXファイルをダウンロード
E2E Test Builder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
拡張機能の基本情報
名前 | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
公式URL | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
説明 | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
ファイルサイズ | 509 KB |
インストール数 | 306 |
現在のバージョン | 1.4.1 |
最終更新日 | 2022-10-10 |
公開日 | 2019-01-22 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Cuubas |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/cuubas/e2e-test-builder |
ヘルプページのURL | https://github.com/cuubas/e2e-test-builder/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "E2E Test Builder", "description": "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.", "version": "1.4.1", "browser_action": { "default_icon": "assets\/[email protected]" }, "icons": { "16": "assets\/[email protected]", "32": "assets\/[email protected]", "48": "assets\/[email protected]", "128": "assets\/[email protected]", "256": "assets\/[email protected]", "512": "assets\/[email protected]" }, "background": { "scripts": [ "background\/runtime.js", "background\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "content\/runtime.js", "content\/main.js" ], "all_frames()": true } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "contextMenus" ] } |