pip install robotframework
pip install robotframework-selenium2library
Full Name: | Test2.User must sign in to check out |
---|---|
Documentation: | This is blah |
Tags: | Smoke |
Start / End / Elapsed: | 20160510 14:59:04.875 / 20160510 14:59:04.883 / 00:00:00.008 |
Status: | FAIL (critical) |
Message: | No keyword with name 'Open Browser' found. |
Start / End / Elapsed: | 20160510 14:59:04.882 / 20160510 14:59:04.882 / 00:00:00.000 |
---|
14:59:04.882 | FAIL | No keyword with name 'Open Browser' found. |
*** Settings ***
and *Settings
work the same way. Also similarly as in the TSV format, everything before the first table is ignored.You may have hit a regression. Your format seems valid according to the User Guide:The test data tables must have one or more asterisk before their names similarly as in the TSV format. Otherwise asterisks and possible spaces in the table header are ignored so, for example,*** Settings ***
and*Settings
work the same way. Also similarly as in the TSV format, everything before the first table is ignored.
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
Ugh
We don't currently use the HTML and TSV formats for anything. So can be removed from your point of view.
-Tatu
*** Settings ***
Documentation A resource file with reusable keywords and variables.
...
... The system specific keywords created here form our own
... domain specific language. They utilize keywords provided
... by the imported Selenium2Library.
Library Selenium2Library
*** Variables ***
${BROWSER} Firefox
${LOGIN URL} http://www.google.com/
*** Test Cases ***
User must sign in to check out
[Documentation] This some basic information about the test
[Tags]
Open Browser ${LOGIN URL} ${BROWSER}
Close Browser
*** Keywords ***