SnapTest

Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of frameworks.

Was ist SnapTest?

SnapTest ist eine Chrome-Erweiterung, die von https://www.snaptest.io entwickelt wurde, und ihr Hauptmerkmal ist "Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of frameworks.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

SnapTest-Erweiterungs-CRX-Datei herunterladen

Laden Sie SnapTest-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Taking Selenium out of the stone age.

SnapTest, A Selenium IDE like tool, helps you create, run, debug, maintain, and generate beautiful QA test code in a variety of frameworks.

Run your tests directly in the browser with near Selenium-like behavior for fast debugging and maintenance.  With tools to scale, SnapTEST allows you to maintain a library of tests that are composable, scalable, and professional.                    

Grundlegende Informationen zur Erweiterung

Name SnapTest SnapTest
ID aeofjocnhdlleichkjbaibdbicpcddhp
Offizielle URL https://chromewebstore.google.com/detail/snaptest/aeofjocnhdlleichkjbaibdbicpcddhp
Beschreibung Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of frameworks.
Dateigröße 9.13 MB
Installationsanzahl 1,875
Aktuelle Version 2.8.2
Letztes Update 2021-11-10
Veröffentlichungsdatum 2020-03-22
Bewertung 4.70/5 Insgesamt 23 Bewertungen
Entwickler https://www.snaptest.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.snaptest.io/doc/getting-started
Hilfeseite URL https://github.com/ozymandias547/snaptest/issues
URL der Datenschutzrichtlinien-Seite https://www.snaptest.io/privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SnapTest",
    "description": "Selenium IDE substitute. Create, maintain, and auto-generate hand-crafted QA automation code in a variety of frameworks. ",
    "version": "2.8.2",
    "icons": {
        "128": "assets\/icons\/icon_128_v2.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "offline_enabled": true,
    "devtools_page": "devtool-background.html",
    "browser_action": {
        "default_icon": "assets\/icons\/icon_256_v1.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "storage",
        "cookies",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "injected.js",
        "assets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "tab.css"
            ],
            "js": [
                "tab.js"
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "eval.html"
        ]
    }
}