trudl
A chrome extension for recording functional UI tests without scripting
trudl란 무엇입니까?
trudl은(는) https://trudl.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for recording functional UI tests without scripting"입니다.
확장 프로그램 스크린샷
trudl 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Trudl is a no-code tool for creating and running UI tests. Trudl is a great alternative to Selenium if you don't want to spend time setting it up, writing scripts and maintaining them. UI functional testing with trudl is easy: 1. Use this Chrome extension to record tests in the Chrome browser 2. Go to trudl.io, download the desktop app for running tests locally 3. View test results, screenshots and more! A free automation testing app, Trudl enables software developers and QA teams to automate their regression test cases at no cost and without coding. Software testing is an extremely crucial process of the software development life-cycle and Trudl makes testing web apps easier.
확장 프로그램 기본 정보
이름 | trudl |
ID | ekpmjhjajeicndehkmjhilbkbmlcmhlk |
공식 URL | https://chromewebstore.google.com/detail/trudl/ekpmjhjajeicndehkmjhilbkbmlcmhlk |
설명 | A chrome extension for recording functional UI tests without scripting |
파일 크기 | 9.1 MB |
설치 횟수 | 14 |
현재 버전 | 1.0.8 |
최근 업데이트 | 2020-11-25 |
출시 날짜 | 2020-06-28 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://trudl.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://trudl.io |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "trudl", "description": "A chrome extension for recording functional UI tests without scripting", "version": "1.0.8", "background": { "persistent": false, "scripts": [ "background.js", "auth0chrome.min.js", "jwt-decode.min.js" ] }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "trudl-logo-v3-no-smile-white-bg-16x16.png", "48": "trudl-logo-v3-no-smile-white-bg-48x48.png", "128": "trudl-logo-v3-no-smile-white-bg-128x128.png" }, "permissions": [ "tabs", "identity", "storage", "notifications", "https:\/\/*\/*", "http:\/\/*\/*", "https:\/\/auto-test-web-db.herokuapp.com\/*", "http:\/\/localhost:8080\/*", "http:\/\/dev-trudl.auth0.com\/*", "https:\/\/trudl.auth0.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/trudl.io\/*", "*:\/\/new.trudl.io\/*", "*:\/\/beta.trudl.io\/*", "*:\/\/app.trudl.io\/*", "*:\/\/www.trudl-local.com\/*" ] }, "manifest_version": 2, "incognito": "split" } |