Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vsilverman/robotframework-demo

This repo shows sample of automating testing the localhost site, using robotramework.
https://github.com/vsilverman/robotframework-demo

Last synced: 27 days ago
JSON representation

This repo shows sample of automating testing the localhost site, using robotramework.

Awesome Lists containing this project

README

        

# Automated testing using Robot Framework
This repo shows sample of automating the testing of localhost site using robotframework.

## Steps to Execute This Sample

- After forking this sample clone it by using e.g. the following command

git clone

- Verify that python installation package (pip) is
available on your machine. If not - install it.

- Verify that robotframework and Selenium2Libranry for
robotframework are installed on your machne.
You can do that by running the following command:

pip list | grep robotframework

- If any of those are not available you can install
them through the pip comommand, e.g.:

pip install robotframework-selenium2library

- Start the local python demo server on port 7272:

python demoapp/server.py 7272

- Execute all login tests, automated through robotfamework
keywords:

robot login-tests

- Observer how robotframework generated new files,
containing test results. Explore those results
by pointing your browser to generated report.html file.