mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
24 lines
589 B
Plaintext
24 lines
589 B
Plaintext
*** 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
|
|
|
|
${CANCEL BUTTON} btnCancel
|
|
${CLOSE BUTTON} btnClose
|
|
|
|
*** Keywords ***
|
|
Import Accounts Page Should Be Open
|
|
Location Should Be ${IMPORT ACCOUNTS PAGE URL}
|
|
|
|
Go To Import Accounts Page
|
|
Go Authenticated To ${IMPORT ACCOUNTS PAGE URL}
|
|
|
|
Exit Import Page
|
|
Click Link ${CLOSE BUTTON}
|
|
|
|
Cancel Import
|
|
Click Link ${CANCEL BUTTON} |