Distributed tests getting hung sporadically on AWS environment
Distributed tests getting hung sporadically on AWS environment. Tool: Test complete Application: Desktop My script gets hung up and it does not proceed further to the next line of code. I don't encounter the same issue when I run the script locally on my system. Do we need to set up some setting toavoid distributed tests to get stuck on AS env?412Views0likes2CommentsAutomating Desktop application on AWS Cloud - help
We have automated Windows Desktop application using TestComplete. Also using TestExecute to run the automation suite parallel in multiple machines(RDP). Now this Desktop application is moved to AWS Cloud and we are completely new to Cloud. We are manually accessing the cloud application via AWS Appstream. I gone through support document but its at high level. But i have some basic queries. 1.What is the standard procedure to automate this application in Cloud ? whether TestComplete must in local machine(RDP) and i need to automate the cloud app via some browser. So i need to procure web module license aswell? 2. Is there any option to run TestComplete/TestExecute in Cloud itself (AWS Appstream) ? If so any additional licenses required ? Thanks RamSolved1.5KViews1like3CommentsExtracting the data from Grid-table(Windows Application) using Python
Actually I need to get total values of a single column present in the Grid Table .So firsti used the below code for getting the count of Child Items and Names of it which are in the Grid Table. def grd (): Grid = Aliases.teacher_debug.frmMain.dxDockSite.TdxDockPanel.frmListDealNav.TdxDockSite.TdxLayoutDockSite.TdxDockPanel.frameList.grdGridFrame.TcxGridSite if Grid.Exists: Log.Message(Grid.Name,Grid.FullName) for i in range (0,Grid.ChildCount): countchi = Grid.Child(i) Log.Message(countchi.Name,"",0) and the OutPutwas Window("TcxGridSite", "", 1) Am not able to understand what went wrong please guide meSolved7.6KViews0likes53CommentsLaunching the Desktop Application
Hi All Am Trying to launch the application by using the below code : def test(): WinFolder = Sys.OSInfo.WindowsDirectory DbgServices.LaunchTestedApplication(WinFolder +"C:\Users\User1\Desktop\Teachers.lnk") app = Sys.Process("Teachers").Exists # Checks whether Notepad has started successfully if app: Log.Message("Teachers app has been started successfully.") else: Log.Message("Teachersapp hasn't been started.") But it is unable to launch the Application and am facing the error Message : Did I went wrong some where in the code , Even if I changed the code a little like this def test(): DbgServices.LaunchTestedApplication("C:\Users\User1\Desktop\Teachers.lnk") app = Sys.Process("Teachers").Exists # Checks whether Notepad has started successfully if app: Log.Message("Teachers app has been started successfully.") else: Log.Message("Teachersapp hasn't been started.") Still theSame error as showed in the image above Please guide meSolved2.4KViews0likes5CommentsSelecting the MainMenu Options
Hi all, Am trying to Navigate through the main Menu options as below In the Above Picture Until I click on Home button the remaining options will not be enabled .I need to Select File and Navigate through the DropDown Sub-Menu so I have written the below code def menuselection(): mainmenu = Sys.Process("Teachers.debug").VCLObject("frmMain").VCLObject("barRibbon") mainmenu.Select("Home") mainmenu.Select("File|Functions|XYZ|ABC Navigator") But O/P Shows "Unable to find the object Select("Home"). See Additional Information for details."Solved3KViews0likes11CommentsCan we use shell.SendKeys with Testcomplete + Python
How can I select using Keys like Esc ,Tab ,Enter & all thearrowkeys in test-complete any example pleasefor a desktop Application. I know that we can do in python outside Test-Complete but I want a example or suggestion how use in the test-complete scripts with python.Solved3.2KViews0likes6CommentsRunning the GeneralEvents_OnStopTest event
Hi all, I would like to run the OnStopTest and theOnStartTest event in the following situations: 1. When an error occurs. 2. At the endo of the test suite/start of a test suit. 3. At the end of an individual test run/start of an individual test run. I am using scripts not keyword tests. I am Using JScript. So if you could give your suggestions in JScript or in pseudocode would be a plus. Looking forward for your ideas. Thanks in advance for your time. Atti.Solved1.3KViews0likes2Comments