My mouse scroll activity does not allow me to edit anything and just have error message. I have also put it in the browser activity but still does not work.
Can you share the error message you received?
Check the properties panel. Looks like you haven’t provided the mandatory properties values.
the problem is i am not able to click or oepn any drop down on that mouse scroll activity.
Hi, @AA_OO for dropdown you can use Select Item activity….can you explain more whatt are you trying to do?
I am just trying to set the bot to scoll down to the bottom of a page.
you can use the “Send Hotkey” activity with “PgDown” (Page Down) to scroll down the page or else if you want to use mouse scroll activity then set the DIRECTION property to Down and and adjust movement units by default it’s I think 10 keep this higher for longer scrolls
Can you check if you have installed the full package of UiAutomation.Activities
Check the package i think its the package issue kindly right click on the packages which you’ve installed and repair the dependencies and delete the activity then again drag and drop the same activity alos if not works than upgrade the UiAutomation.Activities package version this might helps you.
Cheers
files = (
From f In System.IO.Directory.GetFiles(folderPath, “abc_*.xlsx”, System.IO.SearchOption.TopDirectoryOnly)
Let fileName = System.IO.Path.GetFileName(f)
Where Not fileName.StartsWith(“~$”)
Let name = System.IO.Path.GetFileNameWithoutExtension(f)
Let parts = name.Split("_"c)
’ Phải có đúng 3 phần: abc / yyyyMMdd / xxx
Where parts.Length = 3 AndAlso String.Equals(parts(0).Trim(), “abc”, StringComparison.OrdinalIgnoreCase)
Let validDate = DateTime.MinValue
Let isValidDate = DateTime.TryParseExact(
parts(1).Trim(),
“yyyyMMdd”,
System.Globalization.CultureInfo.InvariantCulture,
System.Globalization.DateTimeStyles.None,
validDate
)
Where isValidDate
Order By validDate Ascending
Select f
).ToArray()
