Selenide Exporter for Katalon Recorder
Export Katalon Recorder browser actions to the Selenide Framework
Qu'est-ce que Selenide Exporter for Katalon Recorder ?
Selenide Exporter for Katalon Recorder est une extension Chrome développée par jpratt2, et sa fonction principale est "Export Katalon Recorder browser actions to the Selenide Framework".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Selenide Exporter for Katalon Recorder
Téléchargez les fichiers d'extension Selenide Exporter for Katalon Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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: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: org.apache.maven.plugins maven-surefire-plugin 3.0.0-M4 1 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 com.codeborne selenide 5.7.0 junit junit 4.13
Informations de Base sur l'Extension
Nom | |
ID | mkbfcgpbkcaieiajhllpdocjfnfcbmlm |
URL Officiel | https://chrome.google.com/webstore/detail/mkbfcgpbkcaieiajhllpdocjfnfcbmlm |
Description | Export Katalon Recorder browser actions to the Selenide Framework |
Taille du Fichier | 41.59 KB |
Nombre d'Installations | 336 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2020-06-11 |
Date de Publication | 2020-06-11 |
Développeur | jpratt2 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jpratt2/selenideExport-release |
Langues Prises en Charge | 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" ] } |