https://github.com/mrannanj/robotframework-djangolaunch
DjangoLaunch is a Robot Framework library for starting and stoppping Django.
https://github.com/mrannanj/robotframework-djangolaunch
django robotframework
Last synced: 4 months ago
JSON representation
DjangoLaunch is a Robot Framework library for starting and stoppping Django.
- Host: GitHub
- URL: https://github.com/mrannanj/robotframework-djangolaunch
- Owner: mrannanj
- License: apache-2.0
- Created: 2024-11-09T05:50:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-05T16:01:55.000Z (6 months ago)
- Last Synced: 2025-12-06T23:13:53.933Z (6 months ago)
- Topics: django, robotframework
- Language: Python
- Homepage:
- Size: 480 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
==============================================================================
A Robot Framework library for starting and stopping Django.
==============================================================================
Introduction
------------
DjangoLaunch is a Robot Framework library for starting and stoppping Django.
It has been forked from
https://github.com/kitconcept/robotframework-djangolibrary
Documentation
-------------
Keywords are documented in `Robot Framework Django Launch Keyword Documentation`_.
Installation
------------
Install with::
pip install robotframework-djangolaunch
Example
-------
An example using robotframework-browser::
*** Variables ***
${SERVER} http://localhost:55001
*** Settings ***
Documentation Django Robot Tests
Library DjangoLaunch 127.0.0.1 55001 settings=mysite.robotframework_settings
Library Browser
Suite Setup Open Django and Browser
Suite Teardown Close Django and Browser
*** Keywords ***
Open Django and Browser
Start Django
New Persistent Context
Close Django and Browser
Close Browser
Stop Django
*** Test Cases ***
Scenario: As a visitor I can visit the django default page
New Page ${SERVER}
Get Element text=Hello, World
The `GitHub project main workflow`_ has a live example on how to install
dependencies and runt it.
License
-------
Copyright kitconcept GmbH.
Distributed under the terms of the Apache License 2.0,
robotframework-djangolaunch is free and Open Source software.
Credits
-------
This library was developed by Timo Stollenwerk at kitconcept.
.. image:: kitconcept.png
:alt: kitconcept
:target: https://kitconcept.com/
.. _`Robot Framework Django Launch Keyword Documentation`: https://mrannanj.github.io/robotframework-djangolaunch/
.. _`GitHub project main workflow`: .github/workflows/main.yml