Showing ideas with label Script Extensions.
Show all ideas
Request: Add TypeScript as a supported language.
... View more
See more ideas labeled with:
-
Desktop Testing
-
Mobile Testing
-
Script Extensions
-
Web Testing
Azure DevOps seems to be a popular option these days. Please consider adding the following as a feature in the near future. 1. Post Bugs from Test complete to Azure DevOps 2. Post Work Item from TestComplete to Azure DevOps 3. Upload Test Plan from TestComplete to ADO.
... View more
See more ideas labeled with:
-
Keyword Tests
-
Script Extensions
-
Test Results
I am writing and changing my scripts in my favorite (external) editor. But when I want to use the script in the TestComplete UI, I always get the same pop up as attached. And always I have to confirm. I understand that TestComplete does this, but can we have the option circled as attached?
... View more
See more ideas labeled with:
-
Script Extensions
I like Testcomplete and all it's features, however, when needing to write code it is a bit of a pain (intellisense, styling, code completion, indenting, etc., all do not work well). Instead of coding in Testcomplete, can we add support in VS Code for development and execution? Still have it tied to the license and no need for namemapping, at least not right away, so we can take advantage of a smoother ide. I currently use python with TestComplete.
... View more
See more ideas labeled with:
Status:
New Idea
Submitted on
08-15-2022
10:25 AM
Submitted by
HootyMcOwlFace
on
08-15-2022
10:25 AM
In some cases it is useful / necessary to run a batch script from Testcomplete. Unfortunately Testcomplete can't get back the status code from the batch file to get the information if the script was executed successful or not. In many cases it would be useful to get back the status code at the keyword level of Testcomplete, for example: - execute a program to do some taks as pre condition for the following teststeps - execute some testcases with a batch file that can't be executed by Testcomplete directly, like python testcases with the pytest framework
... View more
See more ideas labeled with:
-
Command Line
-
Keyword Tests
-
Script Extensions
I keep seeing functionality deprecated and hidden. My company pays\renews because of what TestComplete provides per our automation needs. Please do some serious polling among your clients and not the norm on the internet before affecting TestComplete functionality.
... View more
See more ideas labeled with:
-
Script Extensions
It would be nice if you can copy the complete name mapping path from the namemapping from the Mapping Abjects or Aliases screens I am investigating NameMapping, I have one screen open with the name mapping and one screen with my script You have Mapped objects and you can easily create an Alias by dragging. It would be nice if you can right-click the desired map (in Maps or Aliases) and copy the path for pasting into your script this could even be drag and drop into your script i.e. NameMapping.Sys.notepad.dlgSaveAs.DUIViewWndClassName.Explorer_Pane.CtrlNotifySink.ShellView.Items_View.test_complete_test_notepad_save_txt.Name being able to copy this complete String WITHOUT having to highlight it all - will make the system a little more intuitive
... View more
See more ideas labeled with:
-
Name Mapping
-
Script Extensions
The following capabilities are missing in scripting for TestComplete: 1. Changing of namemapping should also update any references inside scripts not just KeywordTests - What I do now is use an external text editor to look for references to Aliases.browser.pageX and change it to Aliaes.browser.pageY 2. Changing the name of a method/sub/function in a script or the script name should update all references used in KeywordTests - Right now if you change a function's name the references done by Keyword tests still use the old name thus causing exceptions during runtime
... View more
See more ideas labeled with:
-
Keyword Tests
-
Name Mapping
-
Script Extensions
Status:
New Idea
Submitted on
05-01-2020
02:23 PM
Submitted by
garyschechter
on
05-01-2020
02:23 PM
I thought this should just be a feature already and I posted asking for help to get it to work. https://community.smartbear.com/t5/TestComplete-General-Discussions/Log-Folder-Icon-Checkpoint-Over-Message-Javascript/m-p/200736#M37434 The log folders are real nice for cleaning up the logs but they only change Icon's if the Folder contains an Error or a Warning. I want LogFolders to show a green if it contains a checkpoint. A common sense order of importance Error > Warning > Checkpoint > Message. Instead it's showing Error > Warning > Message. I think it should even auto detect based on the Log item's priority that has been set. Or just a method to hit ie, Log.CurrentStack(iconWarning, priorityHigh); function TestScriptLog()
{
Log.AppendFolder("This folder Icon should be an Error");
Log.Message("Informational in Folder","",pmNormal);
Log.Checkpoint("Checkpoint in Folder","",pmNormal);
Log.Warning("Warning in Folder","",pmNormal);
Log.Error("Error in Folder","",pmHighest);
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be an Error");
Log.Message("Informational in Folder");
Log.Checkpoint("Checkpoint in Folder");
Log.Warning("Warning in Folder");
Log.Error("Error in Folder");
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be a Warning");
Log.Message("Informational in Folder","",pmNormal);
Log.Checkpoint("Checkpoint in Folder","",pmNormal);
Log.Warning("Warning in Folder","",pmHighest);
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be a Warning");
Log.Message("Informational in Folder");
Log.Checkpoint("Checkpoint in Folder");
Log.Warning("Warning in Folder");
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be a Checkpoint");
Log.Message("Informational in Folder","",pmNormal);
Log.Checkpoint("Checkpoint in Folder","",pmHighest);
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be a Checkpoint");
Log.Message("Informational in Folder");
Log.Checkpoint("Checkpoint in Folder");
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be an Informational");
Log.Message("Informational in Folder","",pmHighest);
Log.PopLogFolder();
Log.AppendFolder("This folder Icon should be an Informational");
Log.Message("Informational in Folder");
Log.PopLogFolder();
}
... View more
See more ideas labeled with:
Status:
New Idea
Submitted on
05-04-2017
03:12 AM
Submitted by
sharmanehaynr
on
05-04-2017
03:12 AM
If we want to create a custom keyword operation and want to use a user form than there is no way that we can access the Keyword parameter dialogue from that form. This is required while creating some functionality where we need to use the user forms but the components/parameters in the user form can be of different type.In that case default keyword parameter dialogue/window will be helpful. Something like: https://community.smartbear.com/t5/TestComplete-Desktop-Testing/Let-the-user-pick-a-variable/td-p/109873 Thanks.
... View more
See more ideas labeled with:
-
Script Extensions
Status:
New Idea
Submitted on
12-01-2016
10:08 AM
Submitted by
tristaanogre
on
12-01-2016
10:08 AM
One of the beauties of Script Extension Runtime Objects is that you can create code that is shared across ALL projects without having to include the code units in the projects themselves. I am involved in the process of creating a detailed test automation framework where a good bit of the framework code is encapsulated in script extension runtime objects.
However, one of the drawbacks I've run into is that, if the framework needs to execute a Keyword test instead of simply a Script routine, the code cannot reside in the extension. Currently, Script Extensions do not support the KeywordTests object and all the methods and objects underneath.
It would be nice to be able to execute KeywordTests within script extensions so I'm formally requesting the ability to do so.
... View more
See more ideas labeled with:
-
Keyword Tests
-
Script Extensions
Issue: Having the native ability to encrypt, decrypt and encode in multiple different formats is becoming more and more crucial to working on modern devops platforms. Often times we need to be able to handle encrypted data, be able to decrypt it when necessary, and communicate back encrypted information. Especially with AWS. Requested Solution: Provide native support to encryption, decryption, and encoding similar to Crypto-JS.
... View more
See more ideas labeled with:
Currently, the BDD editor does not auto list the existing Gherkin steps so it can be selecting easily during scenarios creation. This is a very essential feature and would really be helpful if implemented ASAP.
... View more
See more ideas labeled with:
-
Script Extensions
-
Web Testing
Hi team,
in the current world, the programmers are using Stack overflow to find code snippets for simple problems, and git hub has a feature called Copilot, which we can use to suggest the code sample which works like a suggestion dropdown when we use some testcomplete methods,
it would be great if we create any kind of plugin or some functionality which can do the above mechanism to make our work easier.
Thanks and Regards,
Sathish Kumar K
... View more
See more ideas labeled with:
-
Script Extensions
I'd appreciate the addition of code analysis features such as pylint or PEP8 to the editor (TestComplete)
... View more
See more ideas labeled with:
-
Script Extensions
Nearly 100% of the Selenium automation engineers I've worked with have a Java background, so asking them to learn TestComplete AND JavaScript/VBScript/Python is an additional barrier to entry for using TestComplete. It would be great if the record & play scripts could be recorded into the Java language as well.
... View more
See more ideas labeled with:
-
Desktop Testing
-
Keyword Tests
-
Mobile Testing
-
Script Extensions
Status:
New Idea
Submitted on
09-17-2021
01:27 AM
Submitted by
geneticmaterial
on
09-17-2021
01:27 AM
I am overlaying a large amount of javascripts to a lot of different keyword journeys. My scripts' folder structure is closely mimicking the keyword test folder structure, to aid maintenance and tracking. When I go to select a specific script to inject via script routine into the keyword test, the window that is used for this selection only goes as far as '[project name] > [Script]' for the folders. It then lists hundreds of scripts I have. Which, when viewed in the navigator can be seen via the designed folder structure. The enhancement would be to see the same folder structure in the script routine test selector window.
... View more
See more ideas labeled with:
-
Keyword Tests
-
Script Extensions
Visual Studio enterprise allows us to create Load Tests to performance test our application. This achieved by creating a series of Web Performance Test scripts and then creating a Load Test setup to distribute the scripts and user load in a controlled manner. (Fig 1) Fig 1. Visual Studio Web Performance Test scripts in Load Test setup Currently Test Completes support integration with Visual Studio where Test complete scripts can be run via a Visual Studio controller and Test Agent config. But this is limited to only running Test complete tests one by one (Like a regression test suite). Unfortunately a Test Complete script which is in a Visual Studio project cannot be run via the Visual Studio Load Test setup as it does not recognise Test Complete scripts. You get the below error when tying to add the test to a load test config (Fig 2) Fig 2. Error when adding an existing Test Complete script to a Load Test Setup The reason why Test Complete comes in handy for load tests is because some applications depend on processing in the client end before displaying the results in the GUI (something like a thick client). The time taken for this processing would not be captured via middle tier simulation supported by Visual Studio. Business critical systems which require transaction performance monitored release by release will benefit from the ability to include Test complete scripts in a Visual Studio Load Test as it will allow us to create background "Load" via Visual Studio scripts and monitor real life End to end transaction performance under load via a series of Test complete scripts which run as part of the load test.
... View more
See more ideas labeled with:
-
Desktop Testing
-
Distributed Testing
-
Script Extensions