@FindBy

Generates cssSelector and xPath for Selenium

@FindByとは何ですか?

@FindByはVigneshwaran Gopalanによって開発されたChromeの拡張機能で、その主な機能は「Generates cssSelector and xPath for Selenium」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

@FindBy拡張機能のCRXファイルをダウンロード

@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
Eメール [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"
            ]
        }
    ]
}