Giter VIP home page Giter VIP logo

robotframework-dashboard's Introduction

Robot Framework Dashboard

RF WEB UI

Documentation

Note: This project is still more of less in Proof of Concept state. Software is not in this state suitable for any real use in live environments.

Setup

  1. Install nginx and configure it (see nginx section)
  2. Create Python3 virtualenv: virtualenv -p python3 [envname]
  3. Activate your virtualenv and install requirements pip install -r requirements.pip
  4. Test that everything works
  • Run rfwebui.py in project folder
  • Open browser and go to (by default) http://127.0.0.1:5000/
  • Close development server
  1. Test Gunicorn's ability to serve the project
  • Run gunicorn --bind 0.0.0.0:8000 wsgi:app in project folder
  • Navigate to localhost

nginx configuration

sudo touch /etc/nginx/sites-available/flask_project
sudo ln -s /etc/nginx/sites-available/flask_project /etc/nginx/sites-enabled/flask_project

Add following lines to flask_project file and then restart nginx: sudo /etc/init.d/nginx restart

server {
    location / {
        proxy_pass http://localhost:8000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }

    location /results {
        include proxy_params;
        alias [path_to_results_folder];
        autoindex on;
    }
}

Technologies

  • Python 3.5
  • Flask
  • jQuery 2
  • Bootstrap 3

Todo

  • Automated installation process
  • Ability to abort test execution
  • Show real time execution status via WEB UI (Console -page)
    • Show newest execution messages in footer section
  • Show more test suite related information (documentation, last run time, pass/total ratio, etc.)
  • pabot support
  • Handle correctly situations when app has more than 1 user at the same time
  • Add user roles?
    • Login page
  • Update to Bootstrap 4 and jQuery 3 when Bootstrap 4 is ready
  • Python 2 support?

robotframework-dashboard's People

Contributors

molsky avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.