E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Co to jest E2E Test Builder?
E2E Test Builder to rozszerzenie Chrome opracowane przez Cuubas, a jego główną funkcją jest „An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia E2E Test Builder
Pobierz pliki rozszerzeń E2E Test Builder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
Podstawowe informacje o rozszerzeniu
Nazwa | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
Oficjalny URL | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
Opis | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
Rozmiar pliku | 509 KB |
Liczba instalacji | 306 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2022-10-10 |
Data Publikacji | 2019-01-22 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Cuubas |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/cuubas/e2e-test-builder |
Adres URL Strony Pomocy | https://github.com/cuubas/e2e-test-builder/issues |
Obsługiwane Języki | 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" ] } |