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 là gì?

Selenium Capture + Excel Generator là một tiện ích mở rộng Chrome được phát triển bởi Ritesh, và tính năng chính của nó là "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Selenium Capture + Excel Generator

Tải xuống các tệp mở rộng Selenium Capture + Excel Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Selenium Capture + Excel Generator Selenium Capture + Excel Generator
ID kpeffbajohlpbjihlcccpffcjkjkckjj
URL Chính Thức https://chromewebstore.google.com/detail/selenium-capture-+-excel/kpeffbajohlpbjihlcccpffcjkjkckjj
Mô tả This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel
Kích Thước Tệp 433 KB
Số Lần Cài Đặt 1,178
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-09-21
Ngày Phát Hành 2017-09-21
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Ritesh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}