TestComplete issues with Chrome 113
Hey, this is a general message about TestComplete issues with Chrome 113 Please note that the current version of our product may experience issues when used with Google Chrome 113. We apologize for any inconvenience this may cause. Our team identified this is Chrome issue and we are working on a permanent fix. We appreciate your patience as we work through this issue. The dev team on our side is already working to solve the problem. We expect the problem to be solved by the middle of next week. More updates will be provided here in this thread. Really appreciate your patience and sorry for inconveniences. Best regards, Pawel Mularczyk Product Manager for TestComplete15KViews6likes139CommentsHow to reinstall test complete on your machine once uninstalled
Hi community I have been having numerous issues with test completes latest version and i was advised to uninstall if the issues persists. I have uninstalled test complete but now i have lost my way. How can I reinstall test complete on my machine? Kind Regards, TinaSolved7.2KViews1like18CommentsTrying to call the FindChild method or property of an object but it does not exist
Hello, can someone help debug the following script, I cannot figure it out why it's failing being I am new to TC. I included the screenshot of the properties from the Spy captured,I am sure the page ID is correct according to the spy screen. function DragCard() { // Find the first column element var column1 = Sys.Browser("chrome").Page("https://rdx-dev.rdxhub.com/workspace/patient-board").FindChild("idStr", "chk-drop-list-0", 10); // Find the card element in the first column with the desired text content var cardToMove = column1.FindChild("contentText", "Test Patient455", 10); // Find the second column element var column2 = Sys.Browser("chrome").Page("https://rdx-dev.rdxhub.com/workspace/patient-board").FindChild("idStr", "chk-drop-list-2", 10); // Drag the card to the second column cardToMove.Drag(column2); }Solved5KViews0likes12CommentsTestsCases and related zephyr actions missing
Hello there, Over the weekend (probably due to some updated?) our test cases and related zephyr actions went missing from our project that is integrated with zephyr (attachment no.1). In addition to that Zephys start to demand to add a dedicated ticket type for zephyr - it has been added before and is still added, nothing changed on our side (attachment no.2) - but new (looks like) incorrectly names as - Tect - ticket type has appeard. (attachment no.3). After adding this new TECT issue type to our scheme newly created tickets in this category does show necessary field (attachment no.4). I've looked though changelogs and news for zephyr, I saw that you introduced some improvements for test cases - Is this related? Is this change intentional? My main question is - how we can restore hundreds of our missing test cases to existing tickets?4.9KViews0likes11CommentsHow To Shorten the Length of a String Parameter
Hi, Everybody!... I wish to load test a SOAP web service. One of the parameters needs to be unique for each invocation. I am presently using${=java.util.UUID.randomUUID()}. Lamentably, I am getting the following error:String '<some UUID string>' is too long (length: 36, maximum allowed: 35). How can I shorten the length of the parameter? Please advise.Solved2.7KViews0likes13CommentsArray definition
Hi to everyone. I want to find and display 2 or more text elements in a web page. To do it I use the function FindAll, see below: Targets=Aliases.browser.pageEquipment.FindElement("//se-app/div/div/div/div/div[contains(@class, 'flex-1')]").FindAll(PropArray, ValuesArray, 15, 1000).toArray(); for (var i=0; i<Targets.length;i++) {Log.Message(Targets[i].contentText)} I define the property using the variable PropArray: var PropArray = "contentText"; For the values I tried to use an array but nothing works. If my elements are for example a and b how can I define the variable ValuesArray? Thanks in advance2.4KViews0likes14CommentsHow to run a TestComplete test between mutiple instance of Chrome using different user profile
Hello. In Test Complete, Is it possible to open two instances of Chrome at the same time using different user profile, and executing the tests between both profiles? The reason of my question is that I have the following manual test case I would like to automate using 2 chrome sessions running at the same time. It is important for both Chromes not to use the same user profile. 1) LaunchChrome (1) usingprofile(1) 2) On Chrome (1) - Log on as user1 onto the web app. 3) On Chrome (1) - Create a patient and assign patient to user 2. 4) On Chrome (1) - Make the call for user2 to accept the patient. 5) Start another session of Chrome, but with profile (2) and keeping the other session of Chrome(1) opened. 6) On Chrome (2) - Log on as user2 7) On Chrome (2) - Check patient is in user 2 list. 8. On Chrome (2) - Accept user 1 call and perform a few actions. 9) On Chrome (2) -user 2 return patient to user1 10) Return to Chrome (1) 11) On Chrome (1) -User 1 ends the patient visit after a few actions 12) Both users logs out. I hope someone can help explain how it can be done by example. Thank you.Solved2.3KViews0likes23CommentsTest Objects not recognized
I'm having a big issue with TestComplete. I do the recording of the test and then, when I play it, TestComplete does not recognize some objects that I've just recorded. If I Add Object sometimes it add another object, not recognizing the previous one, and sometimes it tolds me that the object already exists but when I try to use it TestComplete says "Object does not exist". The version is the14.50.976 one2.2KViews1like10CommentsWhere can i get client cert and key in Jira server for requesting rest api
I am working on embedding rest api from jira server to my python code. Using basic authentication but getting SSL certificate issue. Where can I get client certificate and key? Or Is there any other way to get it. Error: '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)')))2.1KViews0likes1CommentNeed help comparing orderID on a second page
Hello, I'm trying to create a keyword test where after completing an order, there is a orderID that gets displayed. On that same page there Is a link that will take an user to the details of the order. Here the number gets displayed once again. I want to make the test in such a way that It checks if both of these orderID numbers are the same. So far I've created a temporary project variable. I use this variable at the beginning of the test to store the value of the orderID. To do this, I've created a set variable command with the mode of object property, using on screen object. I get a few options to choose as value, but none of them have the number, except the clipboard value. This value beeing: Aliases.browser.pageAtaroBvReserveren.textnodeReserveringsnummer7911.MappedName After making the test go the orderdetails page, I've used a property checkpoint using the same proces as before. And comparing the value to the variable with cmpEqual. The value I get out of this is:Aliases.browser.pageAtaroBvBesteldetails.textnodeBestelling7911.MappedName Now In both of these, the number is the same. How do I get It to ignore everything else but the number?Solved1.9KViews0likes10Comments