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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |