SForce XPath Generator

Smarter way to automate salesforce application

¿Qué es SForce XPath Generator?

SForce XPath Generator es una extensión de Chrome desarrollada por Anupam Shukla, y su función principal es "Smarter way to automate salesforce application".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión SForce XPath Generator

Descarga archivos de extensión SForce XPath Generator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *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                    

Información Básica de la Extensión

Nombre SForce XPath Generator SForce XPath Generator
ID eefofgpppgjnnddkkhdgcjnambbhdnaf
URL Oficial https://chromewebstore.google.com/detail/sforce-xpath-generator/eefofgpppgjnnddkkhdgcjnambbhdnaf
Descripción Smarter way to automate salesforce application
Tamaño del Archivo 51.47 KB
Cantidad de Instalaciones 339
Versión Actual 0.9
Última Actualización 2020-08-31
Fecha de Publicación 2020-05-19
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador Anupam Shukla
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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'"
}