Selenium Capture + Excel Generator

This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel

Selenium Capture + Excel Generatorคืออะไร?

Selenium Capture + Excel Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ritesh และคุณลักษณะหลักของมันคือ "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Selenium Capture + Excel Generator

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

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

                        Selenium Capture ease the pain of manually finding 
* xPath, 
* element's value, 
* className, 
* ID. 
Sometime developer has to take loading time of pages into account.☹ 

This feature captures the user's interaction like key-stroke and click and generate the table containing 
* user action, 
* interacted-element's attributes, 
* time-out. 
This extension also allow user to manipulate generated table. 
We also have added another feature which allow developer to generate excel sheet and download the same                    

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

ชื่อ Selenium Capture + Excel Generator Selenium Capture + Excel Generator
ID kpeffbajohlpbjihlcccpffcjkjkckjj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/selenium-capture-+-excel/kpeffbajohlpbjihlcccpffcjkjkckjj
คำอธิบาย This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel
ขนาดไฟล์ 433 KB
จำนวนการติดตั้ง 1,178
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-09-21
วันที่เผยแพร่ 2017-09-21
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Ritesh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selenium Capture + Excel Generator",
    "description": "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel",
    "version": "1.1",
    "browser_action": {
        "default_icon": "Image\/icon.png",
        "default_popup": "Popup\/popup.html"
    },
    "icons": {
        "16": "Image\/icon.png",
        "32": "Image\/icon.png",
        "64": "Image\/icon.png"
    },
    "background": {
        "scripts": [
            "Background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Common\/jquery.js",
                "Content\/content.js"
            ],
            "css": [
                "Content\/content.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "background",
        "downloads"
    ]
}