@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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}