Fitnesse Viewer

Show all scenarios on the page

Fitnesse Viewer란 무엇입니까?

Fitnesse Viewer은(는) Mike Plavsky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show all scenarios on the page"입니다.

확장 프로그램 스크린샷

screenshot

Fitnesse Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}