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
官方網址 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
電子郵箱 [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:\/\/*\/*",
        ""
    ]
}