E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Vad är E2E Test Builder?
E2E Test Builder är en Chrome-tillägg utvecklad av Cuubas, och dess huvudfunktion är "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".
Tilläggsskärmbilder
Ladda ner E2E Test Builder-förlängningens CRX-fil
Ladda ner E2E Test Builder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
Grundläggande Information om Tillägg
Namn | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
Officiell webbadress | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
Beskrivning | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
Filstorlek | 509 KB |
Antal Installationer | 306 |
Aktuell Version | 1.4.1 |
Senast Uppdaterad | 2022-10-10 |
Publiceringsdatum | 2019-01-22 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Cuubas |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/cuubas/e2e-test-builder |
Hjälpsida URL | https://github.com/cuubas/e2e-test-builder/issues |
Stödda Språk | 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" ] } |