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은(는) Ritesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Selenium Capture + Excel Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}