BugBug Automation Testing

Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon.

BugBug Automation Testing란 무엇입니까?

BugBug Automation Testing은(는) https://bugbug.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

BugBug Automation Testing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Create end-to-end tests for your web app in minutes. Regression testing has never been simpler.

How it works?
BugBug Tests Recorder allows you to record and play end-to-end browser tests directly in your Chrome browser. 
1. Create an account on https://bugbug.io - it's free forever
2. Click "Start recording" and manually navigate on your website
3. BugBug records all your clicks and keyboard typing
4. Click "Run test" and BugBug automatically "plays" everything you recorded. It runs an automated test directly in your browser in incognito mode.

Who is it good for?
- startups that want to monitor if their product is working properly
- software developers who want to save time on manual testing before each release
- QA testers who want to automate their work
- e-commerce companies that want to monitor if their platform works as it should

Why choose BugBug over Cypress or Selenium?
- faster implementation
- reduced cost
- less overall effort
- more reliable tests
- works out-of-the-box
- no-code

Documentation: https://docs.bugbug.io/                    

확장 프로그램 기본 정보

이름 BugBug Automation Testing BugBug Automation Testing
ID oiedehaafceacbnnmindilfblafincjb
공식 URL https://chromewebstore.google.com/detail/bugbug-automation-testing/oiedehaafceacbnnmindilfblafincjb
설명 Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon.
파일 크기 6.55 MB
설치 횟수 4,682
현재 버전 7.11.2
최근 업데이트 2024-03-01
출시 날짜 2020-09-01
평점 4.67/5 총 9 개의 평점
개발자 https://bugbug.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bugbug.io
도움말 페이지 URL https://bugbug.io/contact/
개인정보 보호 정책 페이지 URL https://bugbug.io/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BugBug Automation Testing ",
    "description": "Automate your website testing without code. An easy alternative to Selenium, Cypress and Katalon.",
    "version": "7.11.2",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "incognito": "spanning",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "webappContent.js"
            ],
            "matches": [
                "https:\/\/app.bugbug.io\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "BugBug Automation Testing  (7.11.2)"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injection.js",
                "injection.js.map",
                "content.js.map",
                "background.js.map",
                "webappContent.js.map",
                "static\/media\/*",
                "sandbox.html",
                "sandbox.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "alarms",
        "tabs",
        "webNavigation",
        "webRequest",
        "declarativeNetRequest",
        "debugger",
        "storage",
        "scripting",
        "downloads",
        "system.display",
        "offscreen"
    ],
    "host_permissions": [
        ""
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    }
}