Fitnesse Viewer

Show all scenarios on the page

Fitnesse Viewer क्या है?

Fitnesse Viewer Mike Plavsky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show all scenarios on the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fitnesse Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Fitnesse Viewer Fitnesse Viewer
ID leapkbdphoagmeghigeippjfnaeahmjf
आधिकारिक URL https://chromewebstore.google.com/detail/fitnesse-viewer/leapkbdphoagmeghigeippjfnaeahmjf
विवरण Show all scenarios on the page
फ़ाइल का आकार 105 KB
स्थापना संख्या 48
वर्तमान संस्करण 0.2.10
अंतिम अपडेट 2015-03-18
प्रकाशन तिथि 2015-03-18
रेटिंग 4.82/5 कुल 11 रेटिंग्स
डेवलपर Mike Plavsky
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mikeplavsky/FitnesseViewer/wiki
सहायता पृष्ठ URL https://github.com/mikeplavsky/FitnesseViewer/issues
समर्थित भाषाएँ 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"
            ]
        }
    ]
}