Auto Puppet

Generate Puppeteer Testcases

Auto Puppetとは何ですか?

Auto Puppetはhttps://sites.google.com/view/autopuppetによって開発されたChromeの拡張機能で、その主な機能は「Generate Puppeteer Testcases」です。

拡張機能のスクリーンショット

screenshot

Auto Puppet拡張機能のCRXファイルをダウンロード

Auto Puppet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This tool can generate, edit and update Puppeteer test-cases for automation. Useful to QA for generating functional test-cases replacing Selenium and Java based test cases. 
The generated test-cases will be coded in Javascript using Mocha, Chai, Resemble and Puppeteer libraries.
Testcases can be easily setup in Jenkins.
Testcases can run on all possible operating system
This also support screenshot assertions using ResembleJS apart from DOM assertions.                    

拡張機能の基本情報

名前 Auto Puppet Auto Puppet
ID ojgcnlkomdkdgldhpbkeofpebalknhhk
公式URL https://chrome.google.com/webstore/detail/auto-puppet/ojgcnlkomdkdgldhpbkeofpebalknhhk
説明 Generate Puppeteer Testcases
ファイルサイズ 613 KB
インストール数 49
現在のバージョン 0.1
最終更新日 2018-09-27
公開日 2018-09-27
開発者 https://sites.google.com/view/autopuppet
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/akhadir/autoto/blob/master/README.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Puppet",
    "description": "Generate Puppeteer Testcases",
    "version": "0.1",
    "minimum_chrome_version": "10.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Generate Testcases here!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "extJs\/jquery.js",
                "extJs\/html2canvas.js",
                "chromeJs\/inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "chromeJs\/bgNew.js"
        ]
    },
    "permissions": [
        "debugger",
        "activeTab",
        "webRequest",
        "background",
        "tabs",
        "storage",
        "file:\/\/*\/*",
        "https:\/\/*\/",
        "https:\/\/*\/*",
        "http:\/\/*\/",
        "http:\/\/*\/*",
        ""
    ]
}