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文件

下载AI BDD Tests Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
        "*:\/\/*\/*"
    ]
}