Eye Web Element V3.0

This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.

Eye Web Element V3.0 là gì?

Eye Web Element V3.0 là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Eye Web Element V3.0

Tải xuống các tệp mở rộng Eye Web Element V3.0 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Overview:

Tired of typing JSON files for the automation of your webpages? 
Installed an element locator extension in your browser to inspect elements? 
Cool, no doubt about it, but how about an extension which can generate JSON files for all the inspected elements of your webpage?
Well, this extension resolves this hassle.

Guide to use:
•	Add Element Inspector extension to your browser.
•	Turn the extension on (eye icon will be shown).
•	Hover mouse on the element.
•	Press:
  1.	‘X’ for XPath.
  2.	‘C’ for Class Name.
  3.	‘S’ for CSS Selector.
  4.	‘N’ for Name.
  5.	‘I’ for ID.
  6.	‘F’ for Full XPath.
•	Enter the Key in the prompt to save the JSON object against that key and click OK. 

TADA!

Maintain your JSON in the same fashion and have fun!

Setup Guide for Element Inspector:

Chrome (In case of locally deployed websites):
•	Create a copy of Google chrome.
•      Append --disable-web-security --user-data-dir=~/chromeTemp after the target’s address: for example: "C:\Users\JohnDoe\AppData\Local\Google\Chrome\Application\chrome.exe" --disable-web-security --user-data-dir=~/chromeTemp
•	Open google chrome and add this extension. 
•	Route to chrome://flags/#block-insecure-private-network-requests
•	Disable Block insecure private network requests.

Server:
•	Download and install Node.js
•	Download the repository and unzip it to some location, i.e. Desktop.
•	Open index.js file in the Visual Studio code.
•	Open the terminal of Visual Studio code.
•	Run the command npm i
•	Run command as, node .\index.js

Switch the extension on, hover mouse to some element on webpage and press Keys (i.e. x, s, n etc.).
JSON File should be created as Sample.json in the folder of nodetest.
 
Link for Node Server repository:

https://github.com/JawadRehmanCS/NodeServer                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Eye Web Element V3.0 Eye Web Element V3.0
ID mjfgdefifnjkibfojffgjahlbneldmgp
URL Chính Thức https://chromewebstore.google.com/detail/eye-web-element-v30/mjfgdefifnjkibfojffgjahlbneldmgp
Mô tả This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.
Kích Thước Tệp 29.22 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2021-12-20
Ngày Phát Hành 2021-12-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán in_app
URL Trang Trợ Giúp https://www.linkedin.com/in/jawad-rehman-75ab791b1
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Eye Web Element V3.0",
    "description": "This extension will help determine unique Selenium WebElement that can be used with PageFactory to initialize elements on the page.",
    "version": "3.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Click to change the icon's color",
        "default_icon": "icon-on.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "listener.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "http:\/\/localhost:8000\/*",
        "http:\/\/localhost:8000\/"
    ]
}