Auto Puppet

Generate Puppeteer Testcases

Auto Puppetคืออะไร?

Auto Puppet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/view/autopuppet และคุณลักษณะหลักของมันคือ "Generate Puppeteer Testcases"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Puppet

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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:\/\/*\/*",
        ""
    ]
}