Alibaba Scenario Recorder

A Chrome extension for recording browser interaction and generating Cypress scripts

Alibaba Scenario Recorderคืออะไร?

Alibaba Scenario Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jehetpp และคุณลักษณะหลักของมันคือ "A Chrome extension for recording browser interaction and generating Cypress scripts"

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

screenshot
screenshot

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

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

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

                        Alibaba scenario recorder is a convenient test tool for PC web browser recording. By monitoring the user's operation time, recording the user's actual operation and generating test code at zero cost, it is very convenient for the user to realize UI automatic test. This also will speed up your development cycle by facilitating the creation of unit and integration tests.

Getting Started
Click 'Add to Chrome'. That's it! Once you see our icon at the upper-right of your browser window, you are ready to start generating Cypress scripts.

Main functions:
1. Record the user's actual operation
2. Automatically identify the uniqueness of control elements
3. Generate xpath method control path
4. Users add assertions flexibly
5. Record stop generating test code automatically
6. Test code synchronization to UI test platform

If there are any problems or advice, just feel free to let me know. Email:  [email protected]

Alibaba is a trademark of Alibaba.com, Inc. This extension was not created or endorsed by Alibaba.                    

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

ชื่อ Alibaba Scenario Recorder Alibaba Scenario Recorder
ID inodhkekikcaapcjhcepfiplgeoffjpb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/alibaba-scenario-recorder/inodhkekikcaapcjhcepfiplgeoffjpb
คำอธิบาย A Chrome extension for recording browser interaction and generating Cypress scripts
ขนาดไฟล์ 1.04 MB
จำนวนการติดตั้ง 955
เวอร์ชันปัจจุบัน 2.3.3
อัปเดตครั้งล่าสุด 2023-08-29
วันที่เผยแพร่ 2020-06-29
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา jehetpp
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alibaba Scenario Recorder",
    "version": "2.3.3",
    "manifest_version": 2,
    "description": "A Chrome extension for recording browser interaction and generating Cypress scripts",
    "permissions": [
        "contextMenus",
        "storage",
        "webNavigation",
        "activeTab",
        "tabs",
        "http:\/\/gui.alibaba.net\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "debugger",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/app_icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "images\/aliyun.png",
        "default_title": "Alibaba Scenario Recorder",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/gui.alibaba.net\/*",
            "*:\/\/gui.alibaba-inc.com\/*",
            "*:\/\/naruto.alibaba.net\/*"
        ]
    }
}