ContributionsMost RecentMost LikesSolutionsRe: Safari browser itself is crashing when we automate it through TestCompleteHi , Could you please help us regarding the above issue.The Safari browser crashes almost after running each testcase. i.e after each test case run we are re launching the safari browser. There itself it says Safari process.exe crashed and test run stops. We have done all the browser related settings. Thank you. JyothiRe: Safari browser itself is crashing when we automate it through TestCompleteHi , Sorry for the late reply. Yes we are using Safari 5.1.7 version. Many times during test run it tries to launch the application using the browser, we can see in the Test log saying safari crash message. For time being to continue with the test run, we are again trying to launch the application if it crashes. Could you please help us. Thank you JyothiRe: Getting Error "The object invoked has disconnected from its clients"OK.. Will implement this workaround and update you. I have posted some other Safari browser issue as a new thread, can you please guide us to solve the issue? Thank you.Safari browser itself is crashing when we automate it through TestCompleteWe are performing cross browser testing. In Safari most of the time Safari is not launching or after launch it closes. The details shown is as mentioned below: Exception code: 0xC0000005. Process identifier (PID): 4288. Dump file: Safari_ue_f6d9327d.dmp. Looking forward for your support . TestComplete version -10.0.531 Thank you JyothiRe: Getting Error "The object invoked has disconnected from its clients"Adding to the above issue(I am also working for the same project with Vinayak Bhat), we are using TestComplete 10.0.531 . Currently there is no plan of upgrading TestComplete. This object disconnected issue we are getting when we run the script in browser say Chrome, Safari. In IE it was working fine. Scenario is: When we try to click on a button: Will be creating button object using FindChild method. Then in the code when we call click button function, if(oButton.Exists or oButton.Enabled)then oButton.Click szResult = "PASS" szResultDescript = oButton.ObjectType &" "&oButton.contentText& " is clicked." End if It says object exists and goes inside the loop. But as soon it performs the click operation the object is lost in Chrome and Safari browser. And when we try to get the oButton.ObjectType in the result ,it throws object disconnected error. Can you please confirm this specific issue will be solved in higher version. If so we can ask for TestComplete upgradation from our customer. Thank you. JyothiFacing issue when we run the scripts in Safari browserWe are automating web application using TestComplete. Test was working fine in IE . But in Safari we are facing an issue. In our web application when we click on a button it pops up a dialogue, in that data is listed in Table format. In one of the cell we have a checkbox. We have to select that checkbox. But in Safari, it fails to do the operation. Can anybody help us to perform this cross browser testing? Also there is a delay when the application opens in a new tab i.e continuation of the application. We are creating an object using FindChild method as mentioned below. Can you plz let me know when we create a web object by this method can we use Wait method to wait until it appears? '********************************************************************************************* 'Function Name : getObj 'Parameters : Object of parent, Array of Properties, Array of values Currosponding to Properties 'Puropse : To get object by giving properties and values 'Author : Vinayak '********************************************************************************************* function getObj(oParent,strProperties) Dim arrProp() Dim arrValue() arrOneProp = split(strProperties,";") Redim arrProp(ubound(arrOneProp)) Redim arrValue(ubound(arrOneProp)) for i = 0 to ubound(arrOneProp) arrOneOfOne = split(arrOneProp(i),"=") arrProp(i) = arrOneOfOne(0) arrValue(i) = arrOneOfOne(1) next Set w = oParent.FindChild(arrProp, arrValue, 100) Set getObj = w End function TestComplete -10.537 Safari - 5.1.7 Thank you JyothiNot able to select combo box items as Scrollbar not yet scrolled downHello, We have a application form with long data fields. After entering values to the visible fields it should scroll down. But in our application it is not doing so.Scrollbar is not activated immediately. So once the visible fields are edited, it try to select values to the combo box item which is not visible.So our script fails to select the combo box item using the code oComboBox.ClickItem(szItem) . While debugging , If we manually scroll down and make the field visible it works fine. We cant use ScrollintoView function as the page is too long, and this control will not fall under,end of the page. I tried using scrollobar.Keys["Down"]. But here the problem is above this combo box we were entering data for textbox.so the ctrl is in that combo box.So key press operation not working. Can anyone help me to perform scroll operation? Thanks in advance. JyothiRe: Connected applciation in C# Hello, We are using Testcomplete to automate our web based application. I want to add exception handling in our script. But the problem we are facing here is we are running testcases from excel sheet. We haven't added under Test items(organise tests option) for running the test. Can you please let me know still we are able to use this feature and also when we are running multiple test cases, if one test fails I want to continue with the next testcase execution. In help file there is a info but all this they have done when testitems are added. So can you please let me know in our scenario we would be able to achieve this? Thanks in advance. Regards, Jyothi Connected applciation in C#Hello , Can anyone help us for the below query: 1. When we use C# as scripting language in TestComplete, can we use OOPS concept? Eg: creating Class etc 2. In case of connected application in C#, if we use VS2012, then how to launch a web application say www. google.com in VS2012, Can you please share the code for this and identifying web objects in VS2012. Can you please help us ASAP as we are stuck up in taking decision about using Connected application. Regards, Jyothi Re: C# Extensions for Connected Application. TestComplete API roadmap.Hello , I would like to know more information about connected application in C#.. In our project we are planning to use Visual studio. When we add the 2 dlls. we are able to access Sys, Log objects by using Connect Class. But third party plug in objects like "Browsers' is not accessible. I read that we have to use Integration object for this. But his concept is not clear to me. I have used this integration object to identify Browsers object. var MyObject = Connect.Integration["GetObjectByName"]("Browsers"); But it is returning null. They have told to get the object TestComplete should run a test. What exactly we have to do here? Can anyone help on this? Thanks jyothi