ブラウザー上で「文字を入力」アクティビティを使用して日付を代入した変数を入力しようとすると、日付が逆から入力されてしまいます。(例)「2022/09/22」が「22/90/2202」と入力される
こちらはどうしたら解消できますでしょうか。
変数の形は「GenericValue」、代入している式は「DateTime.Now.AddDays(-1)」です。
Welcome to UiPath community
Try with the below expression
DateTime.Now.AddDays(-1).ToString("yyyy/MM/dd")
Note → If you need to enter the Date format like → (“dd/MM/yyyy”) change the above expression
Regards
Gokul
こんにちは
文字を入力アクティビティの入力モードは何を使っていますでしょうか?Simulate?ChromiumAPI?SendWindowMessage?等
可能であれば、これらのモードを変更してどのようになるかを確認してみてはと思います。