XPath CSS Explorer

Locate optimized XPath and CSS selectors for any element, explore/search CSS selectors

XPath CSS Explorerคืออะไร?

XPath CSS Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย XPath CSS Explorer และคุณลักษณะหลักของมันคือ "Locate optimized XPath and CSS selectors for any element, explore/search CSS selectors"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XPath CSS Explorer

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

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

                        XPath CSS Explorer

This tool is designed to provide web developers ability to explore the structure of a web page and generate optimized and robust XPath and CSS selectors to be used in their tests and other use cases. Other than the absolute XPath, the other paths are optimized to be short and generic enough to withstand certain changes to the page playout.  This is accomplished by utilizing ID and unique class information along with certain robust attributes such as name, title etc.

Explore Selectors
This section is a fantastic way to explore the structure of a web page.  It provides a search box to enter a CSS or XPath expression.  On entering, it outlines all web elements matching the criteria.  For example, type and enter "div", to find and outline all the divs in the page.  Any legal CSS/XPath expression works here.  Navigation UI shows all matched selectors along with the current one.  It allows to cycle through the found matches.

Current Selector
This section is designed to provide robust and optimized selector paths for any web element in a web page using a set of heuristics. Such paths can be embedded into Selenium or similar tools to create tests that are robust to changes in the UI. This panel automatically generates paths for current selected web item in the Elements panel.


Page CSS Information
This section provides a way of knowing all ID and Class elements available on the current page.  A numbered badge denotes the count if there is more than one element.  Explore each item by clicking on it, which propagates it to the search box to generate outlines.

Please provide feedback to incorporate into future releases. Hope the tool is of help!                    

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

ชื่อ XPath CSS Explorer XPath CSS Explorer
ID nhlmmlgjcjmoohoddkookdeebnbfcplf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/xpath-css-explorer/nhlmmlgjcjmoohoddkookdeebnbfcplf
คำอธิบาย Locate optimized XPath and CSS selectors for any element, explore/search CSS selectors
ขนาดไฟล์ 278 KB
จำนวนการติดตั้ง 2,112
เวอร์ชันปัจจุบัน 0.9.0.6
อัปเดตครั้งล่าสุด 2019-07-08
วันที่เผยแพร่ 2019-07-03
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา XPath CSS Explorer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XPath CSS Explorer",
    "description": "Locate optimized XPath and CSS selectors for any element, explore\/search CSS selectors",
    "version": "0.9.0.6",
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "content-script.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "devtools_page": "devtools.html"
}