*** Settings ***
Resource        ../../resource.txt

*** Variables ***
${COMPONENT APP}      componentApp
${DYNAMIC APP}        dynamicApp
${NO FLEX APP ERROR}  No Flex application selected. Use `Select Flex Application` keyword to select one.


*** Keywords ***
Select Component Application
    Go To  ${ROOT}/flex/components.html
    Select Flex Application  ${COMPONENT APP}

Select Dynamic Application
    Go To  ${ROOT}/flex/dynamicflex.html
    Select Flex Application  ${DYNAMIC APP}

Select Language
    [Arguments]  ${lang}
    Select From Flex Element  languageComboBox  ${lang}

Go To Page With Multiple Flex Apps
    Go To   ${ROOT}/flex/multipleapps.html

