https://github.com/userzimmermann/robotframework/tree/python3
- Forked from https://github.com/robotframework/robotframework
- Compatible with Python 2.7
Please report any issues to:
https://github.com/userzimmermann/robotframework/issues
You can look at this URL for a complete code diff:
https://github.com/userzimmermann/robotframework/compare/master...python3
python setup.py install
Or with pip:
pip install .
Or from PyPI:
pip install robotframework-python3
Python 3 makes a clear distinction between str for textual data and bytes for binary data. This affects the Standard Test Libraries and their Keywords:
- str arguments don't work where bytes are expected, like writing to binary file streams or comparing with other bytes.
- bytes don't work where str is expected, like writing to text mode streams or comparing with another str.
- Reading from binary streams always returns bytes.
- Reading from text streams always returns str.
You can use the following keywords to explicitly create bytes:
- BuiltIn.Convert To Bytes
- String.Encode String To Bytes
I extended Process.Start Process with a binary_mode argument. By default the process streams are opened in text mode. You can change this with:
binary_mode=True
Collections.Get Dictionary Keys normally sorts the keys. I disabled key sorting in Python 3, because most builtin types are not comparable to each other. This further affects Get Dictionary Values and Get Dictionary Items. I still need to find a better solution... Maybe imitate Python 2 sorting? Any suggestions? :)
-- Stefan Zimmermann
Robot Framework is a generic open source test automation framework for acceptance testing and acceptance test-driven development (ATDD). It has easy-to-use tabular test data syntax and it utilizes the keyword-driven testing approach. Its testing capabilities can be extended by test libraries implemented either with Python or Java, and users can create new higher-level keywords from existing ones using the same syntax that is used for creating test cases.
Robot Framework is operating system and application independent. The core framework is implemented using Python and runs also on Jython (JVM) and IronPython (.NET). The framework has a rich ecosystem around it consisting of various generic test libraries and tools that are developed as separate projects. For more information about Robot Framework and the ecosystem, see http://robotframework.org.
Robot Framework project is hosted on GitHub where you can find source code, an issue tracker, and some further documentation. See CONTRIBUTING.rst if you are interested to contribute. Downloads are hosted on PyPI_, except for the standalone JAR distribution that is on Maven central.
If you already have Python with pip installed, you can simply run:
pip install robotframework
Alternatively you can get Robot Framework source code by downloading the source distribution from PyPI_ or cloning the project from GitHub. After that you can install the framework with:
python setup.py install
For more detailed installation instructions, including installing Python, Jython and IronPython, see INSTALL.rst.
Below is a simple example test case for testing login to some system. You can find more examples with links to related demo projects from http://robotframework.org.
*** Settings ***
Documentation A test suite with a single test for valid login.
...
... This test has a workflow that is created using keywords in
... the imported resource file.
Resource resource.robot
*** Test Cases ***
Valid Login
Open Browser To Login Page
Input Username demo
Input Password mode
Submit Credentials
Welcome Page Should Be Open
[Teardown] Close BrowserRobot Framework is executed from the command line using pybot, jybot
or ipybot scripts, depending is it run on Python, Jython or IronPython.
The basic usage is giving a path to a test case file or directory as
an argument with possible command line options before the path. Additionally
there is rebot tool for combining results and otherwise post-processing
outputs:
pybot tests.robot jybot --variable HOST:example.com --outputdir results path/to/tests/ rebot --name Example output1.xml output2.xml
Run pybot --help and rebot --help for more information about the command
line usage. For a complete reference manual see Robot Framework User Guide.
- Robot Framework User Guide
- Standard libraries
- Built-in tools
- API documentation
- General documentation and demos
- robotframework-users mailing list
- Slack community
- #robotframework IRC channel on freenode
- @robotframework on Twitter
- Other forums
Robot Framework is open source software provided under under Apache License 2.0. Robot Framework documentation and other similar content use Creative Commons Attribution 3.0 Unported license. Most libraries and tools in the ecosystem are also open source, but they may use different licenses.