SForce XPath Generator

Smarter way to automate salesforce application

SForce XPath Generator란 무엇입니까?

SForce XPath Generator은(는) Anupam Shukla에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smarter way to automate salesforce application"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

SForce XPath Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *This extension to be only used on New Record/Record Detail Page*
This extension help's QA team to create relative xpath for Salesforce Application. XPath generated are independent of sandboxes and are able to capture label changes/business defects.

This extension would help you to:
1)Automatically generate xpath for all fields
2)Automatically generate POM for all webelements 
3)Automatically generate Page Factory for all webelements
4)Automatically create selenium script with all required actions.

Steps:
1)Add Chrome extension on your machine
2)Login into Dev/prod org
3)Navigate to New/Edit/Detail page of a record
4)Click on extension item
5)Select option as per your choice
6)If you have selected Generate XPATH then a new tab would be opened to show all your xpath of page 
7)If you have selected Generate POM then a new tab would be opened to show all your POM of page 
8)If you have selected Generate Page Factory then a new tab would be opened to show all your Page factory of all webelements of page 
9)If you have selected Generate Selenium Scripts then a new tab would be opened to display raw selenium script for your selected page                    

확장 프로그램 기본 정보

이름 SForce XPath Generator SForce XPath Generator
ID eefofgpppgjnnddkkhdgcjnambbhdnaf
공식 URL https://chromewebstore.google.com/detail/sforce-xpath-generator/eefofgpppgjnnddkkhdgcjnambbhdnaf
설명 Smarter way to automate salesforce application
파일 크기 51.47 KB
설치 횟수 339
현재 버전 0.9
최근 업데이트 2020-08-31
출시 날짜 2020-05-19
평점 3.67/5 총 3 개의 평점
개발자 Anupam Shukla
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SForce XPath Generator",
    "version": "0.9",
    "description": "Smarter way to automate salesforce application",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'"
}