2023-08-04 14:06:23 +02:00
|
|
|
*** Settings ***
|
|
|
|
Documentation A page object to use in Accounts import tests.
|
|
|
|
...
|
|
|
|
Library SeleniumLibrary
|
|
|
|
Resource ../common.resource
|
|
|
|
|
|
|
|
*** Variables ***
|
|
|
|
${IMPORT ACCOUNTS PAGE URL} ${ROOT URL}/account/import
|
|
|
|
|
2023-08-30 15:48:04 +02:00
|
|
|
${CANCEL BUTTON} btnCancel
|
|
|
|
${CLOSE BUTTON} btnClose
|
|
|
|
|
2023-08-04 14:06:23 +02:00
|
|
|
*** Keywords ***
|
|
|
|
Import Accounts Page Should Be Open
|
|
|
|
Location Should Be ${IMPORT ACCOUNTS PAGE URL}
|
|
|
|
|
|
|
|
Go To Import Accounts Page
|
2023-08-30 15:48:04 +02:00
|
|
|
Go Authenticated To ${IMPORT ACCOUNTS PAGE URL}
|
|
|
|
|
|
|
|
Exit Import Page
|
|
|
|
Click Link ${CLOSE BUTTON}
|
|
|
|
|
|
|
|
Cancel Import
|
|
|
|
Click Link ${CANCEL BUTTON}
|