All Downloads are FREE. Search and download functionalities are using the official Maven repository.

robotframework-2.7.7.atest.testdata.standard_libraries.dialogs.dialogs.txt Maven / Gradle / Ivy

The newest version!
*** Settings ***
Library         Dialogs

*** Test Cases ***
Pause Execution
    Pause Execution    Press OK.

Pause Execution With Long Line
    Pause Execution    Verify that this pretty long text is displayed nicely. And then press OK.

Pause Execution With Multiple Lines
    Pause Execution    And verify that\nthis pretty\nlong text\nis displayed\nnicely.\n\nAnd then press OK.

Execute Manual Step Passing
    Execute Manual Step    Press PASS.

Execute Manual Step Failing
    [Documentation]  FAIL Predefined error message
    Execute Manual Step    Press FAIL and then OK on next dialog.    Predefined error message

Get Value From User
    ${value} =    Get Value From User  Type 'value' and press OK.    Overwrite me
    Should Be Equal    ${value}    value

Get Empty Value From User
    ${value} =    Get Value From User    Press OK.
    Should Be Equal    ${value}    ${EMPTY}

Get Value From User Cancelled
    [Documentation]  FAIL No value provided by user
    Get Value From User    Press Cancel.

Get Selection From User
    ${value} =    Get Selection From User    Select 'value' and press OK.
    ...    zip    zap    foo    value    bar
    Should Be Equal    ${value}    value

Get Selection From User Cancelled
    [Documentation]  FAIL No value provided by user
    Get Selection From User    Press Cancel.    zip    zap    foo

Dialog and timeout
    [Timeout]  1s
    [Tags]     jybot_only
    Execute Manual Step    Wait for timeout




© 2015 - 2024 Weber Informatics LLC | Privacy Policy