autoMagiQ Recorder

autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting.

autoMagiQ Recorder란 무엇입니까?

autoMagiQ Recorder은(는) Qentelli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

autoMagiQ Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        autoMagiQ Recorder is a chrome extension that is used to capture web elements, identify the unique locator, helps the tester to author actions and design testcases. Easier, quicker and more reliable than any of the test automation tools in the market!

➙ Create, maintain, and run automated tests without writing a line of code. Find bugs more quickly and make testing more reliable. 
➙ The simplest way to automate your crucial end-to-end tests as simple as creating new accounts to the more complex business workflows. 

► What can you do with autoMagiQ Recorder: 

➙ Automatically identify unique locators and edit them according to your requirement.
➙ Define actions and action steps based on the unique locators identified. 
➙ Avoid duplication of elements across the application through autoMagiQ’s elemental tree structure
➙ Tests recorded with this recorder can be easily modified to add, edit, or remove steps. 

► autoMagiQ Edge: 

➙ Supports a wide range of locators. (Name, ClassName, LinkText, Partial LinkText, TagName, CSSSelector, XPath)
➙ Choice of execution with the locator that is most suitable for your automation needs.

► What is Recording and Playback in Test Automation: 

Test automation often requires scripting and building a framework to kickstart. But now, with autoMagiQ Recorder, you can start automating tests right away. 

Record and Playback is an approach that helps you automate UI tests without coding. In terms of test automation tools, Record and Playback typically refer to a couple of features for automated test case creation.

Here’s how it works:  The Record feature will help you capture all the manual actions performed on your AUT. Then, with the Playback feature, the recorded tests (test steps + data) will be executed automatically.

► About autoMagiQ
Make your testing seamless with autoMagiQ. No matter how small or large, simple or complex, novice or experienced your team is, there’s an autoMagiQ solution for you.                    

확장 프로그램 기본 정보

이름 autoMagiQ Recorder autoMagiQ Recorder
ID depibhelmpanjmhhekpdbkgblmcablfi
공식 URL https://chromewebstore.google.com/detail/automagiq-recorder/depibhelmpanjmhhekpdbkgblmcablfi
설명 autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting.
파일 크기 91.97 KB
설치 횟수 55
현재 버전 1.1.8
최근 업데이트 2024-03-01
출시 날짜 2023-03-20
평점 5.00/5 총 2 개의 평점
개발자 Qentelli
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.qentelli.com/platforms/mobe
개인정보 보호 정책 페이지 URL https://www.qentelli.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "autoMagiQ Recorder",
    "description": "autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting.",
    "version": "1.1.8",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "\/assets\/icon16.png",
            "32": "\/assets\/icon32.png",
            "48": "\/assets\/icon48.png",
            "128": "\/assets\/icon128.png"
        },
        "default_popup": "popup.html",
        "recorder_popup": "recorder.html"
    },
    "icons": {
        "16": "\/assets\/icon16.png",
        "32": "\/assets\/icon32.png",
        "48": "\/assets\/icon48.png",
        "128": "\/assets\/icon128.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "unlimitedStorage",
        "declarativeContent",
        "tabs",
        "notifications",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/DOMPath.js",
                "libs\/find-element.js",
                "libs\/finder.js",
                "content_scripts\/content.js",
                "content_scripts\/playbackContent.js"
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'none' ; font-src 'self' ; img-src 'self' data: ; script-src 'self' ; style-src 'self' 'unsafe-inline' ; connect-src http: https: ; object-src 'none' ; child-src 'none' ; "
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "__plasmo_hmr_proxy__"
            ]
        }
    ]
}