Hello, I need to save the number of downloaded files from the website from which they are downloaded. This information shows how many files there are under a given download button, and I need to save how many files there were before downloading them.
If you want to extract the value you can use get text activity to get the no of downloaded files in string format or if its extracting whole text you can use string manipulation to get the desired output. Hope this solution helps !!
I’m downloading PDF files on the website, the number in the window shows how many files there are to download, I need to download this number, how many files there are to download, and save it in Excel
Use get text activity and
If you are getting entire line in get text activity
Than use regular expression or split function. For ‘ : ‘ and store the number into some variable and pass it further where you want to write the number
Hope this helps
Thanks