AI BDD Tests Generator

Generate BDD tests examples with OpenAI

AI BDD Tests Generator क्या है?

AI BDD Tests Generator kashoyid द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate BDD tests examples with OpenAI"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AI BDD Tests Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        "*:\/\/*\/*"
    ]
}