AI BDD Tests Generator

Generate BDD tests examples with OpenAI

Cos'è AI BDD Tests Generator?

AI BDD Tests Generator è un'estensione di Chrome sviluppata da kashoyid, e la sua funzione principale è "Generate BDD tests examples with OpenAI".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione AI BDD Tests Generator

Scarica i file di estensione AI BDD Tests Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AI BDD Tests Generator AI BDD Tests Generator
ID daoiemnpnhhffgadaebgbnabgfmjhmef
URL Ufficiale https://chromewebstore.google.com/detail/ai-bdd-tests-generator/daoiemnpnhhffgadaebgbnabgfmjhmef
Descrizione Generate BDD tests examples with OpenAI
Dimensione del File 106 KB
Conteggio Installazioni 255
Versione Corrente 2.0.2
Ultimo Aggiornamento 2023-11-20
Data di Pubblicazione 2022-11-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kashoyid
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Kashoid23/bdd-tests-generator
URL della Pagina di Aiuto https://github.com/Kashoid23/bdd-tests-generator
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/660f713f-cc09-4ceb-99e0-0de5080230b4
Lingue Supportate 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": [
        "*:\/\/*\/*"
    ]
}