Issues while running in different screen size
Hi,
I am automating a windows application, while running in different environment(different Screen Size) Table row changes. I'm trying to select the first table row but its selecting different rows. While running the same code in my local it works fine. I have mapped the table row with its index value and I have used RefreshNamemappingInfo before selecting the table row.
This is how my code looks like
Aliases.JavaFX.Windows.TableRow.RefreshMappingInfo();
Aliases.JavaFX.Windows.TableRow.Click();
Anyone please help to resolve this issue.
Thanks & Regards,
Muralidharan
I found the solution.
My table row is not getting updated that's why I got this. I used tablerow.Nativejavafx.refresh() to refresh the native javafx properties(height, width,etc) and its working now
Thanks & Regards
Muralidharan