*** Settings ***
Documentation   Some suite _docs_ with links: http://robotframework.org
Suite Setup     Log  Suite setup
Suite Teardown  Fail
Test Setup      Log   Test Setup
Test Teardown   Log   Test Teardown
Metadata        home *page*   http://robotframework.org
Metadata        < &lt; ä      < &lt; ä
Force Tags      force  with space   < &lt; ä
Default Tags    default with percent %
Library         pölkü/myLib.py


*** Variables ***
@{list}  1  2  3  4

*** Test cases ***
Simple
    Log  do nothing

Long
    [Tags]    long1    long2    long3
    Sleep    0.5 seconds

Longer
    [Tags]    long2    long3
    Sleep    0.7 second

Longest
    [Tags]    long3    *kek*kone*
    Sleep    2 seconds

Log HTML  [tags]   !"#%&/()=
    [Documentation]    This test uses _*formatted*_ HTML.
    ...  | Isn't | that | _cool?_ |
    Log   <blink><b><font face="comic sans ms" size="42" color="red">CAN HAZ HMTL & NO CSS?!?!??!!?</font></b></blink>  HTML
    Log   <table><tr><td>This table<td>should have<tr><td>no special<td>formatting</table>  HTML
    Log   escape < &lt; <b>no bold</b>
    Fail  escape < &lt; <b>no bold</b>

Unicode  [tags]   with unicode 官话
    Log  hyvää joulua

Complex
    [Setup]   Log   in own setup
    [Teardown]    Log   in own teardown
    [Documentation]    Test doc
    [Tags]    t1  owner-kekkonen
    Log   in test
    User Kw
    ::FOR  ${i}  IN  @{list}
    \    Log   Got ${i}

Log levels
    Log     This is a WARNING!\n\nWith multiple lines.      WARN
    Log     This is info            INFO
    Log     This is debug           DEBUG

Multi-line failure
    [Template]    Fail
    First failure
    Second failure\nhas multiple\nlines

Escape JS </script>
    [Documentation]    </script>
    [Tags]    </script>
    Log    </script>
    </script>

*** Keywords **
User Kw
    Log   in User Kw

</script>
    Fail    </script>
