ContributionsMost RecentMost LikesSolutionsRegions Checkpoint Update CheckHi, I have a set of regions checkpoint. Sometimes I need to check the 'update' option. But I do that only when Im writing scritps.. When the real test must be executed, is there a script way to guarantee that those update checkbox are not checked? ThanksRe: .Exist method or alternative to determine whether an object exists OR notyou can also use the wait* methods, for instance: waitProcess waitWindow waitVCLObject, and others... Sample: if (Sys.Process('tab_veic').Exists) then -> throw a log error if the process does not exists. if (Sys.waitProcess('tab_veic', 2000).Exists) then ->its doesnt throw a log error. -> 2000 is the timeout, in milisecondsRe: Sys.Process("msiexec") and Sys.Process("msiexec", 2)Its the process number. You have to look the process list on OS. When tested app starts, must have one active process for the same app on process list. I usually close all running instances of tested application before tests beginnig, to avoid this problem.Buttons on MessageDlg Hi, I have a script coded like this: texto := 'Confirma?'; btn := MkSet(mrOk, mrCancel); btn := MessageDlg(texto, mtConfirmation, btn, 0); When the messagedlg appears, I expected that Ok button come first (at the left) on the window, but the opposite happens. See image attached. Does anyone knows a way to configure the buttons sequence appears? Best regards,SolvedRe: Break procedure execution. Thanks a LOT!! The EXIT command worked fine!! I´d prefer use it. Because my 'Do Something' can be so large, and I think that is a little 'weird' put a lot of things into a if block.. anyway,. The Exit works fine, thanks again! Break procedure execution.Hi! I have a delphiscript coded like this: procedure test(value : boolean); begin if (value = true) Do Nothing else Do Something end; But what I need to know is whether exists a statement that allow me write it in this way: procedure test(value : boolean); begin if (value = true) Break procedure execution Do Something; end; It´s looks like the break statement existing in while, for loops. Thanks!! SolvedOrganizing Test Scripts Hi everybody! I would like to receive some tips about how could I do to organize my scripts. What I mean is: I have a lot of test cases. Should I group them into a single script, or it's better to keep each test case in a especific script (file). What´s the best practice about these questions? Best regards. Dênio Solved