recently (yesterday about 20:00 UTC my katalon start doing interesting thing (and today i tested on multiple mac devices with my collegues and we all have same issue))
to set value in month wheel picker (left scrollWheel on screen)
everything was working fine, but yesterday somehow i did few changes in script and now on if i send as listed month = “listopad” it will select in wheelpicker month+1 (“prosinec”)
and it doing for every month so if i set month = “leden” in app is picked “únor”, if i set month = “únor” it pick in app “březen” etc.
Can anyone have any idea what should i do to correct this issue?
I try to remove all my edits, I clone master again, but nothing helping. It consistently picking mont+1.
I even put Mobile.comment() before Mobile.sendKeys() to validate app is reading it correct and it printing comment as “listopad” but in app select “prosinec”
This script doing that it open iOS kalendar where it tap on month and year button and open scrollWheelPicker as screened before. In picker it pick correctly Year 2024 but when it go to pick month (requeted is leden first month in Czech language) it somehow pick “únor” (second month in Czech language)
update:
if i call it like this: (2 times in row) it is set correct.
Mobile.sendKeys(monthPickerWheel, “leden”)
Mobile.sendKeys(monthPickerWheel, “leden”)
On first call it scroll to “únor” (second month in czech)
On second call it scroll to “leden” as requested. (first month)
Any idea what is happening there?