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 TestComplete15KViews6likes139CommentsChrome updated, now TC can't find browser
My test won't navigate to the webpage it just says "Waiting for Sys.Browser("chrome")" Anyone else have this problem? Yesterday it worked fine, Today it is broken. Chrome is open on my second screen, and if it wasn't it should open the browser.Solved7.3KViews2likes11CommentsClicking certain area of an object on different screen sizes
I am encountering an issue where an object is clickable (to bring up a menu) butonly in the upper right hand corner of it. I cannot seem to map just the clickable area so when I do a test, I need to include coordinates of the object so that the correct area is clicked, thus opening the menu for additional items to be clicked. This works fine for me but when run on a co-worker's computer the test fails because our screen sizes are different so the object is not clicked in the right location. Is there a way around this? Thanks!Solved7.3KViews0likes16CommentsHow 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.2KViews1like18Commentssmartbear.example.orders is not detected on the Sony device
Hello Everyone, I am trying to run the Order application which has been provided with the Test Complete. I am able to instrument and launch the application using the scripts, but the process is not listed under the device. I am using TestComplte 11.11 on windows 7 64bit. with Sony Xperia Z4 Tablet which has Android version 5.0.2. I have installed latest Java SDK, Installed Android Debug bridge on the device and enabled all the developer settings. Object Spy detects all the application objects on the Normal desktop but not the Tabletscreen. Please suggest me on this. I am attaching the screen shots with this description.5.5KViews0likes5CommentsWaitCell and object does not exist
Afternoon folks, I'm running into an intermittent issue I hope have you have ideas about. There are loads of questions that are ALMOST the same, but none of them seem to be quite what I'm experiencing. Short summary: if I use WaitCell, very occasionally the WaitCell call itself causes "The object "Cell(0,0) does not exist" error. The test will continue running, but because there's an error, the test is marked as failed. the code: grid.RefreshMappingInfo(); // I can sort the grid, so need to refresh the mapping just in case, else the mappings will be broken var waitCell = grid.WaitCell(0,0,10000); //The object doesn't exist and is output to the error about 0.5 seconds after the call grid.FindChildEx(… //this works again I'm using it as a way to confirm that RefreshMappingInfo()has completed before I try and use Find methods again. At worst it should return a stub, right ?Solved4.7KViews0likes15CommentsExists and Find Child Property didn't work
Dear Team, Today suddenly i got below type mismatch issue in various screen while executing script .It was working fine last night and also working fine in other workstation today without change . I really felt so bad because I am unable to figure out route cause and also same script worked well in last night and other work station.I have reinstalled test complete 2-3 time but i didn't get answer why still happening this issue . I tried to debug function and realized that it is giving error when 'Exists' method called .When i debug code line by line it is working fine but when i removed debug point then it is still giving same error . Could you please help me on this? Thanks you AmitSolved4.5KViews0likes14CommentsIs Testcomplete compatible with Angular Material?
I have this html , taken fromhttps://material.angular.io/components/select/overview To see the rendering of the code below go tohttps://stackblitz.com/angular/vvqbegyprlm?file=package.json <form> <h4>mat-select</h4> <mat-form-field> <mat-select placeholder="Favorite food" [(ngModel)]="selectedValue" name="food" role="SELECT"> <mat-option *ngFor="let food of foods" [value]="food.value"> {{food.viewValue}} </mat-option> </mat-select> </mat-form-field> <p> Selected food: {{selectedValue}} </p> <h4>native html select</h4> <mat-form-field> <select matNativeControl placeholder="Favorite car" [(ngModel)]="selectedCar" name="car"> <option value="" selected></option> <option *ngFor="let car of cars" [value]="car.value"> {{car.viewValue}} </option> </select> </mat-form-field> <p> Selected car: {{selectedCar}} </p> </form> when I spy this object it finds all the panels for the <div class...> objects but doesnt recognize the <mat-select class...> but it correctly identifiesnative html select <select> with wSelectedItem property . Does Testcomplete not support custom html tags? Or is it somehow possible to add those custom html tags to the object spy4.1KViews0likes5CommentsHow do I identify an iOS notification indicator?
We have a Home button in our app that changes to display a small orange circle on the top right corner of it when there is a change. I thought this was just an attribute of the object that was being enabled/disabled. However, my dev says it should be in it's own hierarchy. After we both looked in TC, I don't see anything like it nested in my main Window the app runs in, where this Home button is also located. I also can't get it by itself on the object spy. Is there a way to capture the properties and their state of an object and then compare the properties when the object is in another state? That way I could maybe figure out if this is just a property of the object? Otherwise, any thoughts? In the screen shot, you'll see the Button is what I'm focused on. The two labels and button comprise the entire control. When there is a change, I'm not noticing what attribute has changed to enable that orange indicator, and I'm not seeing any additional objects display in my object browser. Thanks in advance.4.1KViews0likes6Comments