We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d7bdd commit ca37e23Copy full SHA for ca37e23
example/example_tests.robot
@@ -1,8 +1,9 @@
1
*** Settings ***
2
-Library Remote http://localhost:${PORT}
+Library Remote http://${ADDRESS}:${PORT}
3
4
*** Variables ***
5
-${PORT} 8270
+${ADDRESS} 127.0.0.1
6
+${PORT} 8270
7
8
*** Test Cases ***
9
Count Items in Directory
example/examplelibrary.py
@@ -3,7 +3,7 @@
import os
-class ExampleRemoteLibrary:
+class ExampleRemoteLibrary(object):
"""Example library to be used with Robot Framework's remote server.
This documentation is visible in docs generated by `Libdoc`.
0 commit comments