E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
E2E Test Builder là gì?
E2E Test Builder là một tiện ích mở rộng Chrome được phát triển bởi Cuubas, và tính năng chính của nó là "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng E2E Test Builder
Tải xuống các tệp mở rộng E2E Test Builder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
URL Chính Thức | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
Mô tả | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
Kích Thước Tệp | 509 KB |
Số Lần Cài Đặt | 306 |
Phiên Bản Hiện Tại | 1.4.1 |
Cập Nhật Lần Cuối | 2022-10-10 |
Ngày Phát Hành | 2019-01-22 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Cuubas |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cuubas/e2e-test-builder |
URL Trang Trợ Giúp | https://github.com/cuubas/e2e-test-builder/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |