Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/vsilverman/robotframework-demo
- Owner: vsilverman
- Created: 2018-12-10T20:58:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-17T19:55:32.000Z (about 6 years ago)
- Last Synced: 2024-10-30T01:02:02.265Z (3 months ago)
- Language: RobotFramework
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.