AI Cypress Tests generator

Records user session and generates cypress tests with support of Open AI

AI Cypress Tests generator là gì?

AI Cypress Tests generator là một tiện ích mở rộng Chrome được phát triển bởi EAG RnD, và tính năng chính của nó là "Records user session and generates cypress tests with support of Open AI".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AI Cypress Tests generator

Tải xuống các tệp mở rộng AI Cypress Tests generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Introducing the ultimate tool for web developers and testers!

Our Chrome extension uses the power of OpenAI to automatically generate Cypress test cases when you interact with your website.

With our extension, you can easily create comprehensive test cases by simply clicking on different elements on your website. Say goodbye to tedious manual testing and hello to faster, more efficient testing.

Our extension is perfect for teams who want to save time and improve the quality of their web applications. Whether you're a developer, tester, or QA engineer, our tool will help you catch bugs and ensure your website is running smoothly.

Features:
•	Easy to use: Simply click on elements to generate test cases.
•	Out of box: It suggests out of the box test scenarios to test your website.
•	Comprehensive: Generates Cypress test cases to cover multiple scenarios.
•	Efficient: Saves time and improves the quality of your web applications.
•	Powerful: Uses OpenAI to automate the testing process.

Try our extension today and see how it can transform your web development and testing process!

How to Generate Your OpenAI API Key
•	If you already have an API Key, you can use it for this extension. If not, follow these steps to generate new api key:
•	Go to the OpenAI website https://platform.openai.com/ and Sign up for an OpenAI account.
•	Once you have signed up and logged in, Go to https://platform.openai.com/account/api-keys
•	Click on the "Create API key" button.
•	After you have created your API key, it will be displayed on the page. Copy it to your clipboard.
•	Paste the new API key in the space provided in extension and start using the extension.

***Important: “Our extension allows users to send data to OpenAI for natural language processing and analysis. We take user privacy and security seriously and have designed our extension to protect user data as much as possible. However, it is important for users to understand that they are responsible for the data they choose to send through the extension. We strongly recommend that users review and understand OpenAI's data privacy and security policies before using our extension to send data”.

Usage
•	Navigate to test website
•	Open the extension and enter Open AI API key
•	Click Record button to start recording
•	Click on any elements on the website that you want to test
•	Choose suitable value from the action dropdown on top of each selected element
•	Click Stop to stop recording
•	Click Get Scenarios button to generate test scenarios
•	Click Get Test cases button to generate cypress test cases code

Contributing
Thank you for your interest in contributing to AI Cypress Tests Generator,
We welcome contributions to this project! 
Check us out on GitHub: 
Link to GitHub - https://github.com/syscolabs/ai-cypress-tests-generator                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AI Cypress Tests generator AI Cypress Tests generator
ID dadjhmgdejocfnabomkeengamkaeppdm
URL Chính Thức https://chromewebstore.google.com/detail/ai-cypress-tests-generato/dadjhmgdejocfnabomkeengamkaeppdm
Mô tả Records user session and generates cypress tests with support of Open AI
Kích Thước Tệp 52.01 KB
Số Lần Cài Đặt 377
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-03-23
Ngày Phát Hành 2023-03-22
Nhà Phát Triển EAG RnD
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/syscolabs/ai-cypress-tests-generator
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AI Cypress Tests generator",
    "version": "1.0.0",
    "manifest_version": 3,
    "author": "EAG R&D",
    "description": "Records user session and generates cypress tests with support of Open AI",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "cypress.png",
        "48": "cypress.png",
        "128": "cypress.png"
    },
    "action": {
        "default_icon": {
            "16": "cypress.png",
            "48": "cypress.png",
            "128": "cypress.png"
        }
    },
    "permissions": [
        "activeTab"
    ]
}