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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export Katalon Recorder browser actions to the Selenide Framework"입니다.
확장 프로그램 스크린샷
Selenide Exporter for Katalon Recorder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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: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
확장 프로그램 기본 정보
이름 | |
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" ] } |