xPath 2 & Robot framework commands

Click on any element to get the xPath

xPath 2 & Robot framework commandsคืออะไร?

xPath 2 & Robot framework commands เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cuong-vm และคุณลักษณะหลักของมันคือ "Click on any element to get the xPath"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xPath 2 & Robot framework commands

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

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

                        This xPath 2 plugin is forked from Tomasz Rembacz's xPath Finder plugin with some path enhancement and Robot framework commands generator support.

Click on any element to get the xPath
Plugin to get the elements xPath.

Usage:
1. Click on the plugin icon, cursor will be changed to the crosshair
2. Hover over the desired element (elements are highlighted on hover)
3. Click on the element and his xPath will display in the panel at the bottom of the page

Options:
- turn on/off inspector,
- turn on/off auto copy to clipboard,
- choose between short ID's or normal path,
- choose Robot framework commands generator,
- change xpath box position

History
1) 22-July-2020: Publish new version (1.0.4) for XPath enhancement and bug fixes                    

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

ชื่อ xPath 2 & Robot framework commands xPath 2 & Robot framework commands
ID mniogbfahfjmogpmelllbadjdhgilemm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xpath-2-robot-framework-c/mniogbfahfjmogpmelllbadjdhgilemm
คำอธิบาย Click on any element to get the xPath
ขนาดไฟล์ 18.62 KB
จำนวนการติดตั้ง 320
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2020-07-23
วันที่เผยแพร่ 2020-07-16
ผู้พัฒนา cuong-vm
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cuong-vm/xpath-finder
URL หน้าช่วยเหลือ https://github.com/cuong-vm/xpath-finder
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "xPath 2 & Robot framework commands",
    "description": "Click on any element to get the xPath",
    "homepage_url": "https:\/\/github.com\/cuong-vm\/xpath-finder",
    "version": "1.0.4",
    "icons": {
        "64": "icons\/default-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/default-64.png",
        "default_title": "Click on any element to get the XPath and Robot framework automated test commands"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "inspect.js"
            ]
        }
    ],
    "commands": {
        "toggle-xpath": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Toggle plugin"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}