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