All Projects → radiateboy → Automagic

radiateboy / Automagic

Licence: gpl-2.0
web automated test platform with Python Django

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Automagic

Woid
Simple news aggregator displaying top stories in real time
Stars: ✭ 204 (-5.12%)
Mutual labels:  django
Django Geojson
django-geojson is a collection of helpers to (de)serialize (Geo)Django objects into GeoJSON.
Stars: ✭ 209 (-2.79%)
Mutual labels:  django
Treeherder
A system for managing CI data for Mozilla projects
Stars: ✭ 212 (-1.4%)
Mutual labels:  django
Django Static Precompiler
Django Static Precompiler provides template tags and filters to compile CoffeeScript, LiveScript, SASS / SCSS, LESS, Stylus, Babel and Handlebars. It works with both inline code and external files.
Stars: ✭ 206 (-4.19%)
Mutual labels:  django
Tenma
Comic book server with in-browser reader
Stars: ✭ 207 (-3.72%)
Mutual labels:  django
Ewp oms
自动化运维系统(saltstack+django+bootstrap),QQ群342844540,博客http://ywzhou.blog.51cto.com
Stars: ✭ 211 (-1.86%)
Mutual labels:  django
Tech Blog
我的个人技术博客(Python、Django、Docker、Go、Redis、ElasticSearch、Kafka、Linux)
Stars: ✭ 203 (-5.58%)
Mutual labels:  django
Django Social Network
Django based social network
Stars: ✭ 213 (-0.93%)
Mutual labels:  django
Csdnbot
CSDN 资源下载器
Stars: ✭ 209 (-2.79%)
Mutual labels:  django
Graphene File Upload
Enhances Graphene Django GraphQL Server for intuitive file uploads via GraphQL mutations.
Stars: ✭ 210 (-2.33%)
Mutual labels:  django
Django Admin Env Notice
Visually distinguish environments in Django Admin
Stars: ✭ 207 (-3.72%)
Mutual labels:  django
Py Elasticsearch Django
基于python语言开发的千万级别搜索引擎
Stars: ✭ 207 (-3.72%)
Mutual labels:  django
Gerapy
Distributed Crawler Management Framework Based on Scrapy, Scrapyd, Django and Vue.js
Stars: ✭ 2,601 (+1109.77%)
Mutual labels:  django
Reactify Django
Integrate React & Django
Stars: ✭ 205 (-4.65%)
Mutual labels:  django
Cookiecutter Django Vue Graphql Aws
A highly opinionated Cookiecutter template that fuses together Django, Vue.js, GraphQL, and AWS into one full-stack web application.
Stars: ✭ 213 (-0.93%)
Mutual labels:  django
Blogbackendproject
Backend code for my blogs, develop with Django Rest framework.
Stars: ✭ 204 (-5.12%)
Mutual labels:  django
Django Sendsms
A simple API to send SMS messages. It is modeled after the django email api.
Stars: ✭ 208 (-3.26%)
Mutual labels:  django
Stocksensation
基于情感字典和机器学习的股市舆情情感分类可视化Web
Stars: ✭ 215 (+0%)
Mutual labels:  django
Silverstrike
Finance Management Made Easy
Stars: ✭ 213 (-0.93%)
Mutual labels:  django
Djangohunter
Tool designed to help identify incorrectly configured Django applications that are exposing sensitive information.
Stars: ✭ 212 (-1.4%)
Mutual labels:  django

自动化测试平台

python3.8+ Django 3.0.6框架

python3.8以下版本 使用Django 3.0.5 以上版本 ,django的 /admin/后台会异常退出,不使用/admin/后台不影响,安装请注意版本

新用户指导使用指南

手动安装环境

pip3 install -r requirements/base.txt

pip3 install -r requirements/seleniumreq.txt

Mysql/Mariadb 数据库 automatic/settings/common.py

DATABASES = {
    'default': {
        # 'ENGINE': 'django.db.backends.sqlite3',
        # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
        'ENGINE':'django.db.backends.mysql',
        'NAME':'automatic',
        'USER':'root',
        'PASSWORD':'123456',
        'HOST':'127.0.0.1',
        'PORT':'3306'
    }
}

数据库初始化

python3 init_database.py

cd automagic

python3 manage.py makemigrations

python3 manage.py migrate

python3 manage.py loaddata initial_data.json

另:内置关键字 在wiki #关键字创建# 页面(可以了解一下)

创建管理员用户

python3 manage.py createsuperuser

按照提示进行输入要创建的用户名、邮箱、密码(8位以上,字母、字符、数字的组合)

启动服务

python3 manage.py runserver 0.0.0.0:8000

http://127.0.0.1:8000 访问登录即可

django admin

http://127.0.0.1:8000/admin/

如何执行测试脚本

点击查看如何执行测试

公众号

扫一扫关注公众号

开源优测

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].