Supporting Page Control to recognize Tabs will help, testing desktop apps without additional scripting.
... View more
See more ideas labeled with:
Devex stops supporting VCL treelist, and they recommend using TreeView control. It would be really good to support these recommended controls, because it's really time killing scripting desktop apps without it.
... View more
See more ideas labeled with:
I would like to see TestExecute integrated into TestComplete so that a user can control the TestExecute instance to run nominated test cases directly from the TestComplete Project. It would be nice to be able to nominate where test cases will be run i.e. whether to run on the current machine under TestComplete or run on a nominated PC (on the network) using the TestExecute application and license attached to the remote PC. Ideally the user would be able to nominate at an individual test case level where to execute the test with the TestComplete PC being the default option. However, even the ability to nominate entire projects to be tested under TestExecute on a remote PC from the Project Suite Test Items list would be beneficial. The expectation being that the results are captured under a consolidated Project Suite log file for analysis. This is fairly high level but happy to discuss further.
... View more
See more ideas labeled with:
Would be nice to have capability to flag when a 400/500 network error message occurrs during a UI test. While I am running a UI test, I would like for testComplete to monitor the Network area of the browser (in the developer tools of chrome). If a failure status shows up (such as a 400 or 500 series http response code), then TestComplete would push that onto a stack or write it to the log as a 'Warning' message. Even though you get a 400 or 500 response in the network tab, this doesn't mean the test is going to fail. Even with a 400/500 error message, there are instances where you are still allowed to interact successfully with the UI without any issues. So, a UI test could pass, but there would be some glitches with the website that the TestComplete test wouldn't catch if it weren't monitoring the network traffic (the http response codes). I originally posted about this in the following question post: https://community.smartbear.com/t5/TestComplete-Questions/Web-Testing-How-to-extract-Network-Responses-and-http-status/m-p/255699#M111245 Is this reason this is not a default feature of web testing possibly because this would slow down the UI tests too much?
... View more
See more ideas labeled with:
Would you consider implementing intelligent code completion in TestComplete anytime soon (for Python in particular)? It would save a lot of time not just for devs when it comes to writing the code, but also for QAs who are not that much familiar with coding itself when they have to write tests (by just calling desired classes and methods). Some examples: # Test.py
class Class1:
def SomeFunction(self):
pass
def Test():
class1 = Class1()
class1. # the option for choosing SomeFunction should pop-up here Or: # Test1.py
class Class1:
def SomeFunction(self):
pass
def SomeOtherFunction(self):
pass
class1 = Class1()
# Test2.py
from Test1 import *
class1. # intellisense for calling functions SomeFunction and SomeOtherFunction I look forward to hearing from you soon on this matter.
... View more
See more ideas labeled with:
Would like the ability to pass a variable value into a database checkpoint custom query. E.g. be able to store a case reference that will change each time and add that into the custom query so when calling the database its finding the specified record
... View more
See more ideas labeled with:
Unable to edit other files when Table under Project Suite is opened. If we minimize the Table then Testcomplete itself getting minimized. Every time we have to close the Table and declare the title and index in our scripts. Please include minimize feature for Table variable under Project Suite so that we can navigate the script and other files to declare the values which we have to use in our tests.
... View more
See more ideas labeled with:
Status:
New Idea
Submitted on
08-01-2023
02:48 AM
Submitted by
SangeetNenwani
on
08-01-2023
02:48 AM
Similarly, like item items, assign an item type to the folders in the execution plan, so multiple runs of folders and the selection to run a folder via command prompt are possible. Currently, folders are only helpful in the structure of execution. But they can help with much more.
... View more
Pls refer Case #00555209 for more information. We want to have ability to run the Testcomplete testcase using API and pass data to testcases externally on api call. Data is dynamic and should not be saved with the automated tests.
... View more
See more ideas labeled with:
I am very careful with my namemapping aliases. I would like the following: Select a parent and children in Alias tree. Right click. Select Exclude. <-- Exclude all selected. Small as this is, it would save a lot of time.
... View more
TestComplete does not support FXCanvas objects at the moment which means its impossible to get child objects from a canvas. Would be a good thing to support given that most use cases of a canvas that I can think of involve adding/drawing objects on to it.
... View more
See more ideas labeled with:
Currently, if a test fails at the first attempt, the test is always reported back as a failure In this example, the test is configured to allow for a retry. It passes on the 2nd time. Could this test be reported back as a pass
... View more
See more ideas labeled with:
Status:
New Idea
Submitted on
07-11-2023
08:24 PM
Submitted by
santoshayodhya
on
07-11-2023
08:24 PM
The current version of Chromium Embedded Browser supported by TestComplete is 88, but we need to develop automation for applications having version 102 and above, hence request to support the version 102 and above for achieving greater automation coverage using TestComplete.
... View more
See more ideas labeled with:
We are working to update our software to .net 6. On a test branch I tried my existing tests a found out that action clickbutton is no longer supported with the .net 6 release. Other actions might also be affected, but to change all tests that use clickbutton to use a similar action is a lot of work. Using replace all in a text editor might work, but editing outside of testcomplete does not seem that great of an idea.
... View more
See more ideas labeled with:
Use a different format than *.MHT for the result logs when test cases are executed using TestAdapter in the Azure pipelines and Azure Test Plans.
... View more
See more ideas labeled with:
Since we use the Intelligent Quality (AI) solution to recognize tables into our Desktop application, I regularly encounter issues with the recognition of the columns. Some examples of struggle points: 1. checkboxes are ignored or wrongly recognized 2. for columns with spaces in the header/content, this text is split up over different columns; on the other side, sometimes unexpectedly different columns are concatenated by TestComplete 3. empty columns (so not containing any value) are skipped so can't be checked 4. not possible to store multiple columns with the same header (but this is problably a limitation difficult to fix and probably we need to update our column namings in the application itself)
... View more
See more ideas labeled with:
Hello, I saw in a community question that this idea had already been asked (and even attached to a feature request) but I can't find it in the ideas and therefore can't vote for it (because it's not in the form of an "idea"). So I'm creating it here to allow others to vote for it. My suggestion for further development would be to allow scripts to be folded by "regions" as in VisualStudio in TC's current script editor. for example: #region MyProcessing [...] #endregion Thanks
... View more
See more ideas labeled with:
I like to have tidy and clear Names for my items - the TestComplete suggests don't align and look like what I need
When I look for a new object on my webpage, even if auto name mapping is switched off
Engines > Name Mapping
The system assigns a name, it would be nice at this point that you have the option to rename the item
... View more
See more ideas labeled with:
Together with TestComplete 15.50, a new Python 3.10 has been delivered. And Python 3.10 delivers new statement: match-case. But it is impossible to use that in TestComplete, because its code checker raises syntax error when it encounters this statement. Adding this capability will allow to take better advantage of Python's capabilities.
... View more