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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Selenium Capture + Excel Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |