E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
What is E2E Test Builder?
E2E Test Builder is a Chrome extension developed by Cuubas, and its main feature is "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".
Extension Screenshots
Download E2E Test Builder Extension CRX File
Download E2E Test Builder 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
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
Extension Basic Information
Name | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
Official URL | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
Description | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
File Size | 509 KB |
Installation Count | 306 |
Current Version | 1.4.1 |
Last Updated | 2022-10-10 |
Publish Date | 2019-01-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Cuubas |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cuubas/e2e-test-builder |
Help Page URL | https://github.com/cuubas/e2e-test-builder/issues |
Supported Languages | 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" ] } |