Robotcorder

A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)

Robotcorderคืออะไร?

Robotcorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wencodes และคุณลักษณะหลักของมันคือ "A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Robotcorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Robotcorder generates RobotFramework test script by recording user interactions and scanning the html page. 

It aims to be equivalent of Selenium IDE for RobotFramework browser test automation.

http://bit.ly/robotcorder-blog

Change log 
http://bit.ly/robotcorder-changelog

-- 0.4.0 --
- Add options to customise the locators

-- 0.3.0 --
Add pause & resume feature
Fix Scan bug

-- 0.2.0 --
Add copy to clipboard function
Change spacing to 4
Include google font

-- 0.1.9 --
Add more settings - Sleep 3s, Check Element.
Listen to all the frames including iframes. May be slow for page with many elements.
Reduce permission.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Robotcorder Robotcorder
ID ifiilbfgcemdapeibjfohnfpfmfblmpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/robotcorder/ifiilbfgcemdapeibjfohnfpfmfblmpd
คำอธิบาย A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)
ขนาดไฟล์ 210 KB
จำนวนการติดตั้ง 5,074
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2018-09-22
วันที่เผยแพร่ 2018-09-22
คะแนน 4.56/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา wencodes
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sohwendy/Robotcorder
URL หน้าช่วยเหลือ https://github.com/sohwendy/Robotcorder
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robotcorder",
    "version": "0.4.0",
    "homepage_url": "https:\/\/github.com\/sohwendy\/Robotcorder",
    "description": "A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            ".\/src\/constants.js",
            ".\/src\/translator\/robot-translator.js",
            ".\/src\/background.js"
        ],
        "persistent": true
    },
    "options_page": ".\/src\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/locator\/xpath-locator.js",
                ".\/src\/locator\/tree-builder.js",
                ".\/src\/locator\/classifier.js",
                ".\/src\/locator\/scanner.js",
                ".\/src\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "assets\/icon-stop.png",
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "assets\/logo-16.png",
        "32": "assets\/logo-32.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.png"
    },
    "permissions": [
        "",
        "activeTab",
        "downloads",
        "storage"
    ]
}