|
@@ -0,0 +1,197 @@
|
|
|
+*** Settings ***
|
|
|
+Library Dialogs
|
|
|
+Library SeleniumLibrary
|
|
|
+Library String
|
|
|
+Library Collections
|
|
|
+Library DateTime
|
|
|
+Library OperatingSystem
|
|
|
+Library Process
|
|
|
+Library EdgeUtils
|
|
|
+
|
|
|
+Suite Setup Run Keywords Set Executable Status
|
|
|
+... AND Suite Can Continue
|
|
|
+... AND Open ${BROWSER}
|
|
|
+... AND Go To Login Page
|
|
|
+... AND Set Date Range
|
|
|
+... AND Enter Username And Password
|
|
|
+... AND Login
|
|
|
+Suite Teardown Run Keywords Pass Execution If Skipped
|
|
|
+... AND Go To ${LANDING_PAGE}
|
|
|
+... AND Capture Account Balances
|
|
|
+... AND Close Browser
|
|
|
+Task Setup Go To Search And Export Page
|
|
|
+Task Template Download Statement
|
|
|
+
|
|
|
+
|
|
|
+*** Variables ***
|
|
|
+# Edge and Firefox are supported
|
|
|
+${BROWSER} Edge
|
|
|
+${HOME_PAGE} https://www.asb.co.nz
|
|
|
+${USERNAME} login username
|
|
|
+@{ACCOUNTS} Account 1 Account 2 Account 3 Account N
|
|
|
+${ACCOUNT_HOLDER_NAME} Name of account holder
|
|
|
+${LANDING_PAGE} ${EMPTY}
|
|
|
+${FROM_DATE} ${EMPTY}
|
|
|
+${TO_DATE} ${EMPTY}
|
|
|
+${SKIP} no
|
|
|
+
|
|
|
+*** Keywords ***
|
|
|
+Output Directory Is Dirty
|
|
|
+ File Should Exist ${OUTPUTDIR}/Export*.ofx
|
|
|
+
|
|
|
+Set Executable Status
|
|
|
+ ${status}= Run Keyword And Return Status Output Directory Is Dirty
|
|
|
+ ${SKIP}= Set Variable If ${status} yes no
|
|
|
+ Set Suite Variable ${SKIP}
|
|
|
+
|
|
|
+Suite Can Continue
|
|
|
+ ${SKIP}= Evaluate robot.utils.is_truthy('${SKIP}') modules=robot.utils
|
|
|
+ Run Keyword If ${SKIP} Fail msg=Output directory is dirty
|
|
|
+
|
|
|
+Pass Execution If Skipped
|
|
|
+ ${SKIP}= Evaluate robot.utils.is_truthy('${SKIP}') modules=robot.utils
|
|
|
+ Pass Execution If ${SKIP} Suite is skipped.
|
|
|
+
|
|
|
+Open Firefox
|
|
|
+ ${profile}= Catenate SEPARATOR=;
|
|
|
+ ... set_preference("browser.download.folderList",2)
|
|
|
+ ... set_preference("browser.download.manager.showWhenStarting",False)
|
|
|
+ ... set_preference("browser.download.dir",'${OUTPUTDIR}')
|
|
|
+ ... set_preference("browser.helperApps.neverAsk.saveToDisk",'text/plain,text/csv,application/csv,application/download,application/octet-stream,text/ofx')
|
|
|
+ ... set_preference('permissions.default.stylesheet', 2)
|
|
|
+ ... set_preference('permissions.default.image', 2)
|
|
|
+ ... set_preference('dom.ipc.plugins.enabled.libflashplayer.so','false')
|
|
|
+ Log ${profile}
|
|
|
+ ${exec_path}= Catenate SEPARATOR=${/}
|
|
|
+ ... %{HOME} bin gecko-driver geckodriver
|
|
|
+ Open Browser ${HOME_PAGE} headlessfirefox ff_profile_dir=${profile}
|
|
|
+ ... executable_path=${exec_path}
|
|
|
+
|
|
|
+Open Edge
|
|
|
+ ${binary_path}= Run Process which microsoft-edge
|
|
|
+ ${binary_path}= Set variable ${binary_path.stdout}
|
|
|
+ ${exec_path}= Catenate SEPARATOR=${/}
|
|
|
+ ... %{HOME} bin edge-driver edgedriver_linux64
|
|
|
+ ${options}= Get Edge Options ${OUTPUTDIR}
|
|
|
+ ${options._ignore_local_proxy}= Set Variable ${TRUE}
|
|
|
+ Set Environment Variable PATH %{PATH}:${exec_path}
|
|
|
+ ${driver}= Create Webdriver Edge executable_path=${exec_path}
|
|
|
+ ... options=${options}
|
|
|
+ Go To ${HOME_PAGE}
|
|
|
+
|
|
|
+
|
|
|
+Set Date Range
|
|
|
+ Return From Keyword If '${FROM_DATE}' != '${EMPTY}'
|
|
|
+ ${TO_DATE}= Get Current Date
|
|
|
+ ${FROM_DATE}= Subtract Time From Date ${TO_DATE} 7 days result_format=%d/%m/%Y
|
|
|
+ ${TO_DATE}= Convert Date ${TO_DATE} result_format=%d/%m/%Y
|
|
|
+ ${val}= Get Value From User Enter from date range default_value=${FROM_DATE} ${TO_DATE}
|
|
|
+ ${FROM_DATE} ${TO_DATE}= Split String ${val}
|
|
|
+ ${FROM_DATE}= Convert Date ${FROM_DATE} date_format=%d/%m/%Y
|
|
|
+ ${TO_DATE}= COnvert Date ${TO_DATE} date_format=%d/%m/%Y
|
|
|
+ Set Suite Variable ${FROM_DATE}
|
|
|
+ Set Suite Variable ${TO_DATE}
|
|
|
+
|
|
|
+Go To Login Page
|
|
|
+ Click Link Log In
|
|
|
+
|
|
|
+Go To Search And Export Page
|
|
|
+ [Documentation] Assumes freshly logged in.
|
|
|
+ ${link_is_visible}= Run Keyword And Return Status Page Should Contain Search and Export
|
|
|
+ Run Keyword Unless ${link_is_visible} Click Link Accounts
|
|
|
+ Click Link statements_link
|
|
|
+ Page Should Contain Export Format
|
|
|
+
|
|
|
+Enter Username And Password
|
|
|
+ [Documentation] Enters user/password into text fields of login page.
|
|
|
+ ${url}= Get Location
|
|
|
+ ${log_level}= Set Log Level NONE
|
|
|
+ ${password}= Get Value From User Enter password for ${url} hidden=yes
|
|
|
+ Set Log Level ${log_level}
|
|
|
+ Input Text dUsername ${USERNAME}
|
|
|
+ Input Password password ${password}
|
|
|
+ [Teardown] Set Log Level ${log_level}
|
|
|
+
|
|
|
+Login
|
|
|
+ [Documentation] Login and Return Home URL. Assumes user/password already entered.
|
|
|
+ Click Button loginBtn
|
|
|
+ Wait Until Page Contains ${ACCOUNT_HOLDER_NAME} timeout=2 seconds
|
|
|
+ ${url}= Get Location
|
|
|
+ ${parts}= Split String ${url} /
|
|
|
+ ${parts}= Get Slice From List ${parts} 0 -2
|
|
|
+ ${LANDING_PAGE}= Catenate SEPARATOR=/ @{parts}
|
|
|
+ Set Suite Variable ${LANDING_PAGE}
|
|
|
+
|
|
|
+Select From List By Partial Label
|
|
|
+ [Arguments] ${locator} ${value}
|
|
|
+ ${items}= Get List Items ${locator}
|
|
|
+ FOR ${item} IN @{items}
|
|
|
+ Run Keyword If ${value} in ${item} Select From List By Label ${locator} ${item}
|
|
|
+ Exit For Loop IF ${value} in ${item}
|
|
|
+ END
|
|
|
+ Fail
|
|
|
+
|
|
|
+Download Statement
|
|
|
+ [Arguments] ${account}
|
|
|
+ Click Element id:Request_AccountKey_input
|
|
|
+ Mouse Down xpath=//li[contains(.,'${account}')]
|
|
|
+ Click Element xpath=//li[contains(.,'${account}')]
|
|
|
+ ${FROM_DATE}= Convert Date ${FROM_DATE} result_format=datetime
|
|
|
+ ${TO_DATE}= Convert Date ${TO_DATE} result_format=datetime
|
|
|
+ Input Text Request_FromDate_inputYear ${FROM_DATE.year}
|
|
|
+ Input Text Request_FromDate_inputMonth ${FROM_DATE.month}
|
|
|
+ Input Text Request_FromDate_inputDate ${FROM_DATE.day}
|
|
|
+ Input Text Request_ToDate_inputYear ${TO_DATE.year}
|
|
|
+ Input Text Request_ToDate_inputMonth ${TO_DATE.month}
|
|
|
+ Input Text Request_ToDate_inputDate ${TO_DATE.day}
|
|
|
+ Click Button Export
|
|
|
+ #Click Element //table[@id='statementSelector']//input[@value='Export']
|
|
|
+ ${status}= Run Keyword And Return Status Wait Until Created ${OUTPUTDIR}/Export*.ofx timeout=5 seconds
|
|
|
+ Run Keyword Unless ${status} Capture Page Screenshot
|
|
|
+ Run Keyword If not ${status} Fail msg=No file downloaded for account: ${account}
|
|
|
+ ${files}= List Files In Directory ${OUTPUTDIR}
|
|
|
+ FOR ${f} IN @{files}
|
|
|
+ Continue For Loop If not '${f}'.startswith('Export')
|
|
|
+ Move File ${OUTPUTDIR}${/}${f} ${OUTPUTDIR}${/}${account}-${f}
|
|
|
+ Return From Keyword
|
|
|
+ END
|
|
|
+ Fail msg=Failed to save downloaded account statement to ${OUTPUTDIR}: ${account}
|
|
|
+
|
|
|
+Scroll To Top Of Page
|
|
|
+ Execute Javascript window.scrollTo(0,0);
|
|
|
+
|
|
|
+Scroll One Page Down
|
|
|
+ [Arguments] ${page_height}
|
|
|
+ Execute Javascript window.scrollBy(0,${page_height});
|
|
|
+
|
|
|
+Firefox Scroll Element Into View
|
|
|
+ [Arguments] ${locator} ${start_page}=0 ${max_pages}=3
|
|
|
+ [Documentation] Firefox behaves differently to Chromium. This is compatable with both.
|
|
|
+ Log start_page=${start_page} max_pages=${max_pages}
|
|
|
+ Run Keyword If ${max_pages} <= 0 Fail Could not scroll ${locator} into view after ${start_page} pages
|
|
|
+ ${start_page}= Convert To Integer ${start_page}
|
|
|
+ ${max_pages}= Convert To Integer ${max_pages}
|
|
|
+ Run Keyword If ${start_page} == 0 Scroll To Top Of Page
|
|
|
+ ${status}= Run Keyword And Return Status Scroll Element Into View ${locator}
|
|
|
+ Return From Keyword If ${status}
|
|
|
+ ${w} ${h}= Get Window Size yes
|
|
|
+ Scroll One Page Down ${h}
|
|
|
+ Firefox Scroll Element Into View ${locator} start_page=${start_page+1} max_pages=${max_pages-1}
|
|
|
+
|
|
|
+Scroll Account Into View
|
|
|
+ [Documentation] Assumes current page is Balances.
|
|
|
+ [Arguments] ${account}
|
|
|
+ Firefox Scroll Element Into View link:${account}
|
|
|
+
|
|
|
+Capture Account Balances
|
|
|
+ [Documentation] Assumes current page is Balances.
|
|
|
+ FOR ${account} IN @{ACCOUNTS}
|
|
|
+ Scroll Account Into View ${account}
|
|
|
+ Capture Page Screenshot
|
|
|
+ END
|
|
|
+
|
|
|
+*** Tasks ***
|
|
|
+Download Statement
|
|
|
+ FOR ${account} IN @{ACCOUNTS}
|
|
|
+ ${account}
|
|
|
+ END
|