1. Selenium IDE records click and type actions for typing text in Data Grid control. But, if we try to execute the same code, it will not type anything in Data Grid. The Gird has to be focused first, otherwise the type command will not work. When we use click command, the Gird will not get focus.
Solution: Instead of click, we need to use clickAt command which will fix this issue. Once we use clickAt, the grid will get the focus, then we can use type command to add some text.
clickAt
Refer the following screenshot which will give you a clear picture.
Thanks for info man!!!
ReplyDelete