Selenide Exporter for Katalon Recorder

Export Katalon Recorder browser actions to the Selenide Framework

Selenide Exporter for Katalon Recorder क्या है?

Selenide Exporter for Katalon Recorder jpratt2 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export Katalon Recorder browser actions to the Selenide Framework"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Selenide Exporter for Katalon Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Release notes: version 1.2
adds better syntax for XPath locators $x(..) 
adds functionality for css= locators
-----

Create automated website tests for the Selenide framework and JUnit 4 by using the Katalon Recorder plugin.

Steps:
1) Record browser actions and use various assertion commands in the Katalon Recorder to create replayable website tests.

2) Click "Export" in the Recorder and choose "Selenide Framework".

3) Selenide syntax will be generated automatically.

Note: there is no difference between "assert" and "verify" in the Selenide syntax. Instead, you can use the following code if you use Maven.

command line: mvn "-Dsurefire.skipAfterFailureCount=1" test
pom:

    
        
            org.apache.maven.plugins
            maven-surefire-plugin
            3.0.0-M4
            
                1
            
        
    


This stops the tests after the first failure. You could raise the number to 3 or 10 if you want to prevent runaway failures.

Related information:
Selenide framework: https://selenide.org/
Katalon Recorder plugin: https://chrome.google.com/webstore/detail/katalon-recorder-selenium/ljdobmomdgdljniojadhoplhkpialdid
source code: https://github.com/jpratt2/selenideExport-release


If you want to start using Selenide in Maven:
    
        
            com.codeborne
            selenide
            5.7.0
        
        
            junit
            junit
            4.13
        
    

Note: in Selenide, you don't have to maintain browser drivers. It does this automatically. If you want to launch a test using a specific browser in Maven, you could use this command line syntax:
mvn -Dselenide.browser=firefox test                    

एक्सटेंशन की मूल जानकारी

नाम Selenide Exporter for Katalon Recorder Selenide Exporter for Katalon Recorder
ID mkbfcgpbkcaieiajhllpdocjfnfcbmlm
आधिकारिक URL https://chrome.google.com/webstore/detail/mkbfcgpbkcaieiajhllpdocjfnfcbmlm
विवरण Export Katalon Recorder browser actions to the Selenide Framework
फ़ाइल का आकार 41.59 KB
स्थापना संख्या 336
वर्तमान संस्करण 1.2
अंतिम अपडेट 2020-06-11
प्रकाशन तिथि 2020-06-11
डेवलपर jpratt2
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jpratt2/selenideExport-release
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selenide Exporter for Katalon Recorder",
    "description": "Export Katalon Recorder browser actions to the Selenide Framework",
    "version": "1.2",
    "icons": {
        "16": "logo_selenide_16.png",
        "32": "logo_selenide_32.png",
        "48": "logo_selenide_48.png",
        "128": "logo_selenide_128.png"
    },
    "background": {
        "scripts": [
            "KatalonToSelenide.js",
            "background.js"
        ]
    },
    "permissions": [
        "alarms"
    ]
}