@FindBy

Generates cssSelector and xPath for Selenium

@FindBy क्या है?

@FindBy Vigneshwaran Gopalan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates cssSelector and xPath for Selenium"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में @FindBy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        @FindBy is a Google Chrome Web Extension that generates CSS Selectors and XPath for selected items on a web page.
It comes with an intuitive UI that helps the end user understand the DOM structure in a simple tabular form with the element attributes. 
@FindBy enables the user to select the HTML tag attributes and generate relative CSS selectors and XPath. 

The generated CSS selectors and XPath in automation testing tools like Selenium, Protractor, etc.

@FindBy helps UI automation test engineers in generating complete CSS selectors and XPath by just a click of checkboxes.

It's faster and accurate and will save tons of time spent in analyzing the DOM and writing your CSS selectors and XPath.

Let's stop writing custom and complex CSS selectors and XPath and start GENERATING!                    

एक्सटेंशन की मूल जानकारी

नाम @FindBy @FindBy
ID amfagfnjpmboaffcefbgcbafmneemlhf
आधिकारिक URL https://chromewebstore.google.com/detail/findby/amfagfnjpmboaffcefbgcbafmneemlhf
विवरण Generates cssSelector and xPath for Selenium
फ़ाइल का आकार 109 KB
स्थापना संख्या 289
वर्तमान संस्करण 1.3
अंतिम अपडेट 2021-04-14
प्रकाशन तिथि 2021-04-02
रेटिंग 4.27/5 कुल 11 रेटिंग्स
डेवलपर Vigneshwaran Gopalan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.youtube.com/channel/UCjzTDpv9OfyAU-yNGV-96VQ
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "@FindBy",
    "version": "1.3",
    "description": "Generates cssSelector and xPath for Selenium",
    "author": "Vigneshwaran Gopalan",
    "background": {
        "scripts": [
            ".\/jscripts\/FindBy_eventPage.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "\/icons\/*.png"
    ],
    "icons": {
        "16": ".\/icons\/FindBy.png",
        "48": ".\/icons\/FindBy.png",
        "128": ".\/icons\/FindBy.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                ".\/jscripts\/jquery-3.5.1.min.js",
                ".\/jscripts\/FindBy_cs.js",
                ".\/jscripts\/FindByPopupUI.js"
            ],
            "css": [
                "\/css\/FindByPopup.css",
                "\/css\/w3.css"
            ]
        }
    ]
}