20 lines
470 B
Plaintext
Executable File
20 lines
470 B
Plaintext
Executable File
*** Settings ***
|
|
Documentation Import Python functions
|
|
|
|
Library ./root_domain_test.py
|
|
|
|
|
|
*** Keywords ***
|
|
# My Keyword [Arguments] ${path}
|
|
# Directory Should Exist ${path}
|
|
Werefox Cafe Test Cases
|
|
[Arguments] ${remote_url} ${site_url}
|
|
|
|
${driver}= Setup Webdriver ${remote_url}
|
|
|
|
${result}= Execute Tests ${driver} ${site_url}
|
|
|
|
Should Be True ${result}
|
|
|
|
[Teardown] Teardown Webdriver ${driver}
|