Applitools for Selenium IDE

Applitools plugin for Selenium IDE

Τι είναι το Applitools for Selenium IDE;

Το Applitools for Selenium IDE είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://applitools.com, και η κύρια λειτουργία του είναι "Applitools plugin for Selenium IDE".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Applitools for Selenium IDE

Λήψη αρχείων επέκτασης Applitools for Selenium IDE σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Applitools for Selenium IDE is a lightweight plugin that works with the Selenium IDE Chrome Extension. 

Why should you use it?

Have you ever released a version of your website or app with a visual bug? Messed up CSS so that things are out of whack? 

Of course. We all have. (It’s ok!)

So how can this help?

Applitools for Selenium IDE, or SIDE Eyes for short, lets you incorporate visual UI testing into your Selenium IDE automated test scripts. 

(If you’re not familiar with Selenium IDE, head over to https://www.seleniumhq.org/selenium-ide/)

How does it work?

SIDE Eyes lets you insert visual checkpoints into your Selenium IDE script. The first time you run one of these checkpoints, it grabs a baseline screenshot of whatever web page Selenium IDE is on.

Every subsequent time you run one of those checkpoints, SIDE Eyes grabs a new screenshot, then sends it off to Applitools’ find any visual differences. 

On the Applitools website, you can see all your screenshots and all their visual differences. 

Even better, we render your web page on a bunch of different browser viewport sizes, on both Chrome and Firefox, using our Visual Grid (https://applitools.com/visualgrid). This lets you find bugs in responsive web pages more easily.

For each visual bug we find, we show you the handful of CSS or DOM lines that most likely caused the bug, using our Root Cause Analysis feature (https://applitools.com/rca). This can save you HOURS of debugging time.

Is this just pixel comparison?

Not at all. We use a Visual AI engine to find only differences that the human eye will detect. That means no more annoying off-by-a-pixel false alarms to waste your time.

Want to learn more?

Check out our tutorial https://applitools.com/tutorials/selenium-ide.html                    

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

Όνομα Applitools for Selenium IDE Applitools for Selenium IDE
ID fbnkflkahhlmhdgkddaafgnnokifobik
Επίσημο URL https://chromewebstore.google.com/detail/applitools-for-selenium-i/fbnkflkahhlmhdgkddaafgnnokifobik
Περιγραφή Applitools plugin for Selenium IDE
Μέγεθος Αρχείου 2.45 MB
Αριθμός Εγκαταστάσεων 3,557
Τρέχουσα Έκδοση 1.14.0
Τελευταία Ενημέρωση 2022-07-07
Ημερομηνία Δημοσίευσης 2020-06-09
Αξιολόγηση 4.36/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής https://applitools.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://applitools.com/tutorials/selenium-ide.html
Διεύθυνση URL της Σελίδας Βοήθειας https://applitools.com/tutorials/selenium-ide.html
URL της Σελίδας Πολιτικής Απορρήτου https://applitools.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Applitools plugin for Selenium IDE",
    "manifest_version": 2,
    "name": "Applitools for Selenium IDE",
    "version": "1.14.0",
    "version_name": "1.14.0",
    "homepage_url": "https:\/\/applitools.com\/",
    "icons": {
        "70": "icons\/icon_70.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_menu16.png",
            "32": "icons\/icon_menu32.png",
            "64": "icons\/icon_menu64.png"
        },
        "default_title": "Applitools for Selenium IDE",
        "default_popup": "assets\/index.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads",
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "assets\/pageScripts.js"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/content.js"
            ],
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "assets\/background.js"
        ]
    },
    "options_ui": {
        "page": "assets\/options.html",
        "browser_style": false,
        "chrome_style": false
    }
}