ContributionsMost RecentMost LikesSolutionsWhen more Test Items are executed From project suite it fails at some pointHi, I'm having a project suite with around 1280 Test Items and daily i'm running around 700 Test Items. Till 540 test items it runs successfully and after that all the remaining test items gets failed. When i run the failed test items individually they all get pass. Can any one suggest the reason for these failures? Is there any limit to add run files from project suite? Thanks & Regards, MuralidharanRe: Issues while running in different screen size 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 Re: Issue with resolution and remote desktop connection Im using through object recognition but facing the same issue. Same code fails when running in different screen resolutions. I want to select my 1st table row but its value changing repeatedly. Re: Issues while running in different screen size My Row pointing to different position while running in different screens. Even though I use RefreshMappingInfo its not getting updated in name mapping. Have anyone tried in different screen resolutions? 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 SolvedRe: Automate Email Log Hi This is my code. function SendEmail(mFrom, mTo, mSubject, mBody, mAttach) { var i, schema, mConfig, mMessage; try { schema = "http://schemas.microsoft.com/cdo/configuration/"; mConfig = Sys.OleObject("CDO.Configuration"); mConfig.Fields.Item(schema + "sendusing") = 2; // cdoSendUsingPort mConfig.Fields.Item(schema + "smtpserver") = "smtp.gmail.com"; // SMTP server mConfig.Fields.Item(schema + "smtpserverport") = 465; // Port number // If you use Gmail -- // mConfig.Fields.Item(schema + "smtpserver") = "smtp.gmail.com"; // mConfig.Fields.Item(schema + "smtpserverport") = 465; // If you use Outlook -- // mConfig.Fields.Item(schema + "smtpserver") = "smtp-mail.outlook.com"; // mConfig.Fields.Item(schema + "smtpserverport") = 25; // If you use Office365 -- // mConfig.Fields.Item(schema + "smtpserver") = "smtp.office365.com"; // mConfig.Fields.Item(schema + "smtpserverport") = 587; mConfig.Fields.Item(schema + "smtpauthenticate") = 1; // Authentication mechanism mConfig.Fields.Item(schema + "smtpusessl") = true; mConfig.Fields.Item(schema + "sendusername") = "My gmail ID"; // User name (if needed) mConfig.Fields.Item(schema + "sendpassword") = "My password"; // User password (if needed) mConfig.Fields.Update(); mMessage = Sys.OleObject("CDO.Message"); mMessage.Configuration = mConfig; mMessage.From = mFrom; mMessage.To = mTo; mMessage.Subject = mSubject; mMessage.HTMLBody = mBody; aqString.ListSeparator = ","; for(i = 0; i < aqString.GetListLength(mAttach); i++) mMessage.AddAttachment(aqString.GetListItem(mAttach, i)); mMessage.Send(); } catch (exception) { Log.Error("Email cannot be sent", exception.description); return false; } Log.Message("Message to <" + mTo + "> was successfully sent"); return true; } function MainTest() { if (SendEmail("My Id", "Destination ID", "Subject", "Sample", "c:\\new\\Test.txt")){ Log.Checkpoint("Mail Sent Successfully"); } else { Log.Error("Mail Not Sent"); } } Do I need to change anything else? Thanks & Regards, Muralidharan Re: Automate Email Log Hi, https://support.smartbear.com/viewarticle/82075/?q=send%20log%20email#_ga=1.246979332.1075504268.1462881480 I implemented this method, while executing I'm getting this error "Transport failed to connect to the Server". How to rectify it? Thanks & Regards, Muralidharan Re: Project Variables As you said I opened mulitple connections but I didnt close it. Now I closed the connection like Project.Variables.Sheet1.Disconnect(); Now its working Thank you for your information. Launch TestComplete and run Project Suite From cmd Hi, My requirement is to launch TestComplete and run the Project Suite from command line. Is there any soultion? Can anyone help me? Thanks & Regards, Muralidharan SolvedAutomate Email Log Hi, My requirement is to send my log through email automatically. How can i configure automatic email for log? Can any one help me? Thanks & Regards, Muralidharan