...
This example download a file on the device, go to wetransfer website and upload this file
Code Block |
---|
# empty theclean downloads folder before each iteration of test filesEmptyDownloadsFolder # download a file in the downloadsdownload directory of the device filesDownloadFile,https://dl.greenspector.com/pdf/sustainability.pdf" ########## prepare browser ############################ browserPrepareAndOpenForReference measureStart,PAUSE_REFERENCE pause,300001000 measureStop ######################################################## ###### go to wetransfer site ########################### browserGoToUrl,https://wetransfer.com measureStart,CHRGT_HOME pressEnter waitUntilText,Send a file pause,${PAUSEAFTERLOAD} measureStop ######################################################## ########## stuf to go to the upload button ################## measureStart,CHRGT_PAGE_AGREEMENT clickByText,Send a file waitUntilText,please agree measureStop measureStart,CHRGT_PAGE_UPLOAD clickByText,I agree waitUntilTextBeforeClick,Okay waitUntilText,Upload files measureStop ######################################################## ###### upload the previous donwloaded file ############# measureStart,ACTION_SELECT_ONE_FILE clickByText,Upload files if,exists,text,Allow clickByText,Allow fi pause,1000 waitUntilTextBeforeClick,While using the app,true #open the file system on the device clickByTextwaitUntilTextBeforeClick,Files # wait files system to be opened waitUntilDesc,Show roots # select the dowloads folder on file system filesSelectDownloadsFolder # select the previous downloaded file clickByText,sustainability.pdf waitUntilText,Add more files measureStop ######################################################## |
Note |
---|
This code is only on example. It may not work because of changes on site wetransfer.com |
Explanation
1/ Clean downloads folder to start my test iteration in same state: filesCleanDownloadsFolder
...
3/ Select the previous downloaded file by going to downloads folder: filesSelectDownloadsFolder
Here some screenshots of the test :
...