Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gani-23/umate
https://github.com/gani-23/umate
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gani-23/umate
- Owner: Gani-23
- Created: 2024-04-08T08:51:05.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-04-12T03:00:53.000Z (7 months ago)
- Last Synced: 2024-04-12T09:57:51.994Z (7 months ago)
- Language: Python
- Size: 29.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UMATE
UMATE (Unified Automation and Testing Engine) is a customized API designed to facilitate rapid automation using API requests. This API integrates with various automation tools and frameworks, providing a streamlined interface for executing automated tasks.
## Overview
UMATE simplifies the automation process by exposing a set of endpoints that accept JSON payloads to define and execute automation tasks. This README provides an introduction to the API, usage examples, setup instructions, contribution guidelines, and licensing information.
## Usage
### Sample JSON Payload for POST Method
The following example demonstrates how to structure a JSON payload to execute automation tasks via UMATE:
```json
{
"tests": [
{
"title": "Open google.com",
"steps": [
"Open Browser https://google.com",
"Go To https://google.com"
]
}
]
}