WebDriver Element Locator

Chrome Port of WebDriver Element Locator

WebDriver Element Locatorคืออะไร?

WebDriver Element Locator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gertdreyer และคุณลักษณะหลักของมันคือ "Chrome Port of WebDriver Element Locator"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebDriver Element Locator

ดาวน์โหลดไฟล์ส่วนขยาย WebDriver Element Locator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        To use this extension, simply right click on the web element you wish to locate, select an appropriate locator string and it'll be copied to your clipboard.

This extension will attempt to populate the context menu with usable webdriver XPATH-based findElement commands for the dotnet, python and ruby bindings and Support Locator Library references for the focused web element.

To help prevent buggy tests (and save your time debugging), it will also check the locators for uniqueness, signified by red crosses and green ticks.

In addition, if elements have long, fragile, auto-generated attributes such as id="ctl00_ElementContainer_Inputs_txtForename" it will attempt to locate based on the final (and most significant) part of the value only.

If it struggles to locate via attributes it will also attempt to locate via text value.

After installing the extension a browser restart is recommended to ensure the extension functions as expected.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WebDriver Element Locator WebDriver Element Locator
ID cjighmmbcdpbfnhinpakjloafcpmefgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webdriver-element-locator/cjighmmbcdpbfnhinpakjloafcpmefgl
คำอธิบาย Chrome Port of WebDriver Element Locator
ขนาดไฟล์ 21.57 KB
จำนวนการติดตั้ง 1,406
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2023-03-16
วันที่เผยแพร่ 2021-11-24
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา gertdreyer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gertdreyer/WebDriver-Element-Locator/tree/main
URL หน้าช่วยเหลือ https://github.com/gertdreyer/WebDriver-Element-Locator/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebDriver Element Locator",
    "description": "Chrome Port of WebDriver Element Locator",
    "version": "1.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "32": "webdev-32.png",
        "64": "webdev-64.png"
    }
}