@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
电子邮箱 [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"
            ]
        }
    ]
}