Fitnesse Viewer

Show all scenarios on the page

Qu'est-ce que Fitnesse Viewer ?

Fitnesse Viewer est une extension Chrome développée par Mike Plavsky, et sa fonction principale est "Show all scenarios on the page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fitnesse Viewer

Téléchargez les fichiers d'extension Fitnesse Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension analyses Fitnesse Slim Test Page. It searches for Scenarios, Scripts, Query and Decision Tables.   

In the current state it can be useful for getting quick understanding of test, which scenarios are used, which are not, and if there are external functions used on the page. Also if you use big Scenario Libraries you can see what scenarios could be useful for this test.

As soon as you install it and go to Acceptance Test, there'll be eye in address bar. Just Click on it. Then choose between All Scenarios, Used Scenarios or Called Functions Views. If you click Scenario it shows its definition. 

Mind the gap! It only works for pages which have not been run.

Description of Fitnesse Slim can be found here http://fitnesse.org/.FitNesse.UserGuide.SliM

"Invoking a scenario from a script table using Interposed style" has not been done yet.                    

Informations de Base sur l'Extension

Nom Fitnesse Viewer Fitnesse Viewer
ID leapkbdphoagmeghigeippjfnaeahmjf
URL Officiel https://chromewebstore.google.com/detail/fitnesse-viewer/leapkbdphoagmeghigeippjfnaeahmjf
Description Show all scenarios on the page
Taille du Fichier 105 KB
Nombre d'Installations 48
Version Actuelle 0.2.10
Dernière Mise à Jour 2015-03-18
Date de Publication 2015-03-18
Évaluation 4.82/5 Total 11 Évaluations
Développeur Mike Plavsky
Type de Paiement free
Site Web de l'Extension https://github.com/mikeplavsky/FitnesseViewer/wiki
URL de la Page d'Aide https://github.com/mikeplavsky/FitnesseViewer/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fitnesse Viewer",
    "version": "0.2.10",
    "description": "Show all scenarios on the page",
    "content_security_policy": "default-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Click to see Fitnesse Scenarios on the page"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/base.css"
            ],
            "js": [
                "lib\/jquery-1.4.4.js",
                "lib\/base.js",
                "lib\/deps.js",
                "templates\/scenarios.js",
                "templates\/soyutils.js",
                "utils.js",
                "core.js",
                "ui.js",
                "inspector.js"
            ]
        }
    ]
}