Loadmill Test Composer

Generate API Tests using AI

Loadmill Test Composer란 무엇입니까?

Loadmill Test Composer은(는) https://loadmill.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate API Tests using AI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Loadmill Test Composer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Loadmill Test Composer uses AI to generate automated API tests in real-time, right from your browser.

Spend less time creating boilerplate and repetitive test code and more time adding your human insights to your tests. Play a user flow in your app, and the Test Composer will immediately generate an end-to-end API test script for it.

How to use the Chrome dev tools to generate an end-to-end API test:
➤ Open the Chrome Developer Tools and switch to the Loadmill Composer tab
➤ If you are not logged in to Loadmill, you will be prompted to the login page
➤ Play a the user flow you would like to test and let Loadmill analyze your API requests
➤ When you are done performing your tested user flow, click the Create Test button at the bottom

★ What's new 
• Better support for multi-systems testing. Upload HARs to combine recordings from multiple applications into a single test flow
• Test analysis will now use your account algorithm settings
• Improving the ability to hide and obfuscate sensitive values
• No longer clearing the request list after test creation
• Updated UI visuals and Layout
• Adding automated API descriptions
• Filter irrelevant requests from your session in one click
• View WebSocket binary messages in clear text
• WebSocket! WebSocket events are now included in the generated tests.
• "Non-API call" filter bug fixed
• Syntax highlighting for JSON 
• Showing the request and response body
• Better control on which requests will be filtered out
• Fixed bug for when no test suite is selected
• Copy a single request and paste it into your Loadmill tests
• Better support for base64 encoded responses
• JavaScript stack trace removed from HAR files to make them smaller
• Create a new test suite by typing its name in the test suite selector bar
• updated to work with the new app.loadmill.com subdomain
• Better error reporting
• Fixed test analysis regression                    

확장 프로그램 기본 정보

이름 Loadmill Test Composer Loadmill Test Composer
ID gdkmnfehipofdefhpegbgkkocinlaofd
공식 URL https://chromewebstore.google.com/detail/loadmill-test-composer/gdkmnfehipofdefhpegbgkkocinlaofd
설명 Generate API Tests using AI
파일 크기 1.69 MB
설치 횟수 1,081
현재 버전 0.30
최근 업데이트 2024-02-06
출시 날짜 2020-02-14
평점 5.00/5 총 7 개의 평점
개발자 https://loadmill.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.loadmill.com
도움말 페이지 URL https://docs.loadmill.com
개인정보 보호 정책 페이지 URL https://app.loadmill.com/assets/privacy-policy.pdf
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Loadmill Test Composer",
    "description": "Generate API Tests using AI",
    "version": "0.30",
    "manifest_version": 3,
    "permissions": [
        "clipboardWrite",
        "storage",
        "tabs",
        "webRequest"
    ],
    "host_permissions": [
        "ws:\/\/*\/*",
        "wss:\/\/*\/*",
        ""
    ],
    "action": {
        "default_title": "Loadmill Chrome Devtools",
        "default_icon": "pinmill.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/pinmill16.png",
        "48": "images\/pinmill48.png",
        "128": "images\/pinmill48.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}