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”。
擴展截圖
下載Selenium Capture + Excel Generator擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | kpeffbajohlpbjihlcccpffcjkjkckjj |
| 官方網址 | 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"
]
} | |