AI BDD Tests Generator

Generate BDD tests examples with OpenAI

AI BDD Tests Generator란 무엇입니까?

AI BDD Tests Generator은(는) kashoyid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate BDD tests examples with OpenAI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

AI BDD Tests Generator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Link to open source Github project:
https://github.com/Kashoid23/bdd-tests-generator
Feel free to open an issue there if you have one.

This extension allows to generate Capybara functional tests with OpenAI.

Getting Started

1) Install the Extension

- Click Add to Chrome.

2) Enable Analysis

- Click on the extension icon in your browser toolbar.

3) Provide OpenAI API Key

- To enable analysis, you need to provide your OpenAI API key (https://openai.com/blog/openai-api) since API is paid. By default, the extension uses the 'gpt-3.5-turbo' model (https://openai.com/pricing). We use your chrome storage as a secure keystore.

4) Generate Capybara Examples

- After providing the API key the extension will analyze the DOM events. We are currently following up mouse down events
- Click on the extension icon again to generate a file with Capybara examples.

5) Generate Custom Matchers

- Right-click on any element on a webpage.
- From the context menu, select "BDD Generate Test Expect Example".

The extension will copy to clipboard custom Capybara matchers based on the selected element.                    

확장 프로그램 기본 정보

이름 AI BDD Tests Generator AI BDD Tests Generator
ID daoiemnpnhhffgadaebgbnabgfmjhmef
공식 URL https://chromewebstore.google.com/detail/ai-bdd-tests-generator/daoiemnpnhhffgadaebgbnabgfmjhmef
설명 Generate BDD tests examples with OpenAI
파일 크기 106 KB
설치 횟수 255
현재 버전 2.0.2
최근 업데이트 2023-11-20
출시 날짜 2022-11-07
평점 5.00/5 총 1 개의 평점
개발자 kashoyid
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Kashoid23/bdd-tests-generator
도움말 페이지 URL https://github.com/Kashoid23/bdd-tests-generator
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/660f713f-cc09-4ceb-99e0-0de5080230b4
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "BDD TG",
    "name": "AI BDD Tests Generator",
    "description": "Generate BDD tests examples with OpenAI",
    "version": "2.0.2",
    "manifest_version": 3,
    "action": {
        "default_title": "AI BDD Tests Generator"
    },
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}