Ruto - XPath Finder

Ruto brings the best XPath to you. We are striving hard to improve better performance and more new features

Τι είναι το Ruto - XPath Finder;

Το Ruto - XPath Finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sites.google.com/testleaf.com/ruto, και η κύρια λειτουργία του είναι "Ruto brings the best XPath to you. We are striving hard to improve better performance and more new features".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Ruto - XPath Finder

Λήψη αρχείων επέκτασης Ruto - XPath Finder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Restart your browser after installing Ruto.

Ruto - A product of Testleaf!

Rūto assist to identify the selector from HTML DOM like id, name, XPath, especially XPath in 20+ different patterns as of today. That makes your test automation life lot more easier.

What Rūto will solve for you?
 - Build selector including 20+ XPath patterns
 - Dynamic XPath based on Parent-child Axes
 - Allow you to copy the XPath of your choice to IDE
- provides driver commands and POM (Page Object Model snippets based on your inputs)

XPath as follows:
 1. Id
 2. Link text
 3. Partial Link text
 4. Attribute based XPath
 5. Collections based XPath
 6. Contains - Attribute based XPath
 7. Text based XPath
 8. Contains text based XPath
 9. Normalize text based XPath
 10. Following element based XPath
 11. Following-Sibling based XPath
 12. Parent to element based XPath and other patterns as well!

Ruto v7.0.0
1. Introduced Multilevel Axes XPath (2 and 3 Levels)
2. Introduced Multi Attribute selection
3. Refactored the code for performance optimization

Ruto v6.0.4
*fixed minor bugs during recording test scripts XPaths

Ruto v6.0.0
change log:
1. Record sequence of test script
2. Download as a txt file
3. Downloaded files contains simple driver syntax and @FindBy syntax

Ruto V5.2.0
Updates:
1. Table
	- Get table locator &
	- Selected element locator
2. CSS locator
3. Minified the UI
4. minor changes in the XPath patterns and lot more under the hood

Version 5.1.1
* Provided an alternative solution to handle Shadow-DOM
* Option to get all the attribute values available in the element from the snippet 
  drop-down
* Variables name has been modified to fit the best as user's read

Just in case if your worried about our privacy policy, here you go 
https://sites.google.com/testleaf.com/ruto/download?authuser=0#h.p_jiTeRQjAInDx

To be simple, we don't collect any information.

Feel free to report an issue in the below link:

https://github.com/rutoXpath/Ruto/issues

We will provide you the best solution.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Ruto - XPath Finder Ruto - XPath Finder
ID ilcoelkkcokgeeijnopjnolmmighnppp
Επίσημο URL https://chromewebstore.google.com/detail/ruto-xpath-finder/ilcoelkkcokgeeijnopjnolmmighnppp
Περιγραφή Ruto brings the best XPath to you. We are striving hard to improve better performance and more new features
Μέγεθος Αρχείου 1.82 MB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 7.0.1
Τελευταία Ενημέρωση 2021-04-07
Ημερομηνία Δημοσίευσης 2020-01-01
Αξιολόγηση 4.25/5 Συνολικά 68 Αξιολογήσεις
Προγραμματιστής https://sites.google.com/testleaf.com/ruto
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://sites.google.com/testleaf.com/ruto/how-to-use
URL της Σελίδας Πολιτικής Απορρήτου https://sites.google.com/testleaf.com/ruto/download
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ruto - XPath Finder",
    "short_name": "Ruto",
    "manifest_version": 2,
    "version": "7.0.1",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Ruto brings the best XPath to you. We are striving hard to improve better performance and more new features",
    "homepage_url": "https:\/\/sites.google.com\/testleaf.com\/ruto\/",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+R",
                "mac": "Alt+R",
                "linux": "Alt+R",
                "default": "Alt+R"
            },
            "description": "Get different types of XPath in a click"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js",
                "content\/jquery.min.js",
                "content\/getMethodOrVarText.js",
                "content\/handleTable.js",
                "content\/getCss.js",
                "content\/search.js",
                "content\/record.js",
                "content\/angularLocators.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "downloads",
        "downloads.open"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "128": "logo\/128.png"
    },
    "browser_action": {
        "default_title": "Ruto offered by TestLeaf",
        "default_popup": "popup.html"
    },
    "options_page": "option.html",
    "offline_enabled": true
}