You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to upload images automatically to a business page, the images change their name 4 times a day with a timestamp and a correlative, create a function that if I echo it generates the string I want to upload but at the time of concatenating the timestamp and the correlative to the upload option when uploading the image does not detect as a timestamp or correlative function:
upload #scv_file_file_provider as "upload_master" + timestamp () + "-" + run + ". csv"
Thanks.
The text was updated successfully, but these errors were encountered:
After you create the custom function generate_filename(), you can call it using below -
upload #scv_file_file_provider as `generate_filename()`
Your above line may be is not working because you use quotation marks. There is no need for quotation marks in the text parameter for upload. The backtick ` is used to denote variables and functions as TagUI default context for many steps is text and not variable, to make the usage more like natural human language.
Hello,
I am trying to upload images automatically to a business page, the images change their name 4 times a day with a timestamp and a correlative, create a function that if I echo it generates the string I want to upload but at the time of concatenating the timestamp and the correlative to the upload option when uploading the image does not detect as a timestamp or correlative function:
upload #scv_file_file_provider as "upload_master" + timestamp () + "-" + run + ". csv"
Thanks.
The text was updated successfully, but these errors were encountered: