ContributionsMost RecentMost LikesSolutionsRe: Html table contains particular string but find method fails to find it Hi, Sys.Browser("iexplore").Page("*").Find("ContentText", "2455/00004205/000/00",1000,True).Exists Regards, Re: Clicking on li html tag does not fire its click event. Hi, Maybe namedItem("SaveChanges") is parent of Link(0) or somethink? The easiest way to check it: try to use "Object Spy" on your link, then copy "FullName" and use .Click Regards, Re: Clicking on li html tag does not fire its click event. Hi, Sys.Browser("firefox").Page("*").Find("Name","SaveChanges",1000,True).Click How to insert hyperlink to excel? Hi, Is it possible to insert hyperlink using VBS? Re: How to compress picture from logs Thanks for reply Alexei. I don't need to store all pictures, so if I can recognize the errors on the screen I can only send the selected picture to the logs. But is it possible to save the picture in the excel files? If yes, some ideas/examples how do this? Regards, How to compress picture from logs Hi, I have to keep logs by some days and I'm looking for any ideas for compress pictures saved in logs by Visualizer. Regards, SolvedRe: Unable to Recognize Child Objects of JAVA Swing Application Hi, You have to downgrade your Java to ver. Java 7 Update 51. I had the same issue. It is issue with JRE. It will should be fixed in JRE 7 update 65 and JRE 8 update 11. Regards, Re: Unable to Recognize Child Objects of JAVA Swing Application Hi Kapeel, Which version of Java do you have? Regards, Re: How to find whether text fields is empty or not? Hi, I use something like this and it works. function test(){ if (My_Object.ContentText != null){ Log.Message("Username field is not empty") } else { Log.Message("Username field is empty") } } Regards, Re: Aplication error Hi, When I disabled the code below, issue stopped occur. Sub While_loop_odb (par1, val1, val2, timeout) x = 0 Do While x < timeout set field = Sys.Browser(ProjectSuite.Variables.Browser.Iterator("name")).Page("*").Find(par1,val1,1000,True) If field.Exists = False Then Call Delay(1000, "Please wait for: "&val1) x = x+1 Else log.Message(&val1 &" Found !:D") Exit Do End if Loop If x = timeout Then Log.Error "Timeout: " &val1,"", pmNormal, null, Sys.Desktop.Picture() Else end if set link = Sys.Browser(ProjectSuite.Variables.Browser.Iterator("name")).Page("*") For i = 1 to timeout If link.Find(par1,val1,1000,True).wText <> val2 Then Call Delay(1000, "Please wait loading..." ) Else log.Message(" Load: "&val2) exit for end if If i = timeout Then Log.Error "Timeout: " &val2,"", pmNormal, null, Sys.Desktop.Picture() Else end if Next End Sub What is wrong and what can cause this error?