@FindBy

Generates cssSelector and xPath for Selenium

Τι είναι το @FindBy;

Το @FindBy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vigneshwaran Gopalan, και η κύρια λειτουργία του είναι "Generates cssSelector and xPath for Selenium".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης @FindBy

Λήψη αρχείων επέκτασης @FindBy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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