Testing on a local iPad
Hello! We have certain tests which we need to carry out on a specific AppleID as it relates to an Apple Sandbox environment. This is currently all setup on a physical Apple iPad on my desk. It will be web tests that we're running on the Sandbox iPad However, I am completely at a loss as to how to get TestComplete to record the tests on the iPad. Is this even possible? Any help gratefully received! Thanks!7Views0likes0CommentsIs it possible to add Device Info from a remote browser to the Log Folder?
Hello All! We have tests running across multiple devices in a remote browser loop. Within that remote browser loop, we have a Data-Driven loop as we need to run the test with a few iterations of data before moving onto the next device/browser combination. The Data loop has "Append Log Folder" which pulls in a test condition variable from the data table. The Test Execution Summary shows me the browser that was used, but we'd also like to be able to see which device was used. Is this possible? Many Thanks in Advance!4Views0likes0CommentsKeyword Tests Removed
When running some automation tests an error was displayed saying unable to find element and everything crashed so needed to restart testcomplete. Once restarted the project now has no keyword tests section and all the tests in the execution plan have a little red x icon against them and can't be run. When looking in the keyword tests folder in the saved location a load of them seem to have gone. Any idea what may have caused this and how to recover them?26Views0likes1CommentWhich Object property triggers "Transparent or out of bounds" error?
Hello everyone! I would like to have a part of my Keyword Test click on an Object, if possible. Sometimes, however, there is a popup panel that takes the focus of the screen, and doesn't allow any interaction with the rest of the screen, where the Object is. In this case, TestComplete will throw an "Object is Transparent or our of bounds" error when I call the step to click on it. Right now I am trying to use an `if` statement to determine whether the Object can be clicked on by checking whether one of its properties is true or not. I have already tried the `Exists`, `Enabled`, and `Visible` properties. Is there another one that I should be using for this problem instead? Thanks,36Views0likes5CommentsMaking a URL semi-agnostic Page object in Keyword Test
Hello All, My question is quite brief. I am trying to automate a website with a Keyword test. Let's call it: https://www.test.com Suppose that after I save something on this website, the URL changes to: https:/www.test.com/12WJQ4L/ Afterwards, I want to do one or two actions on the screen, and then I close the page. The problem is that the end of the URL changes whenever you make different changes to the initial site. So next time I open, manipulate, and save the page, the URL is: https://www.test.com/63XTY8K/ In code, I'm sure you could do something to the effect of "https://www.test.com/" + * + "/" to identify the Page, but I don't see how I would use a code snippet in this case. Is it possible to create such a dynamic URL Page object in a Keyword test? Thank you,Solved20Views0likes3CommentsVideo recording of Text Execution
Hello to everyone! I installed the VideoRecorder Extension and the last version of VLC Media Player. When I try to record a test execution in the log tab the following sentence appears: "Unable to start video recording. The VLC recorder is not installed." Why does this message appear? I uninstalled and installed again VLC but it continues to appear. How could I solve this problem? Thanks in advance to everyoneSolved1.1KViews0likes8CommentsScreenshots in Keyword test to document steps
Hi! How to attach a screenshot in Smartbear's Testcomplete to a single test step of type 'Property Checkpoint' or of type 'Run Script Routine' in the keyword testing mode like is it done automatically during an 'On Screen Action' operation with 'Capture images' flag enabled the Visualizer settings? The option 'Tools' -> 'Current Project Properties' -> 'Visualizer' -> 'Collect Test Visualizer data during test run' -> 'Capture images' (activated) binds the screenshot to the script function and not to the calling keyword test step as expected. Used Testcomplete version 15.62.2.7 x6494Views0likes11CommentsExecute same Keyword test on different Environment
I have created a keyword test and now need to execute the same test in both the UAT and INT environments. However, the web elements captured in the UAT environment are not being recognized when I run the test in the INT environment. I have also attempted to use JavaScript mode, but the issue persists. Upon analysis, I discovered that the tool requires mapping two elements for the same web element in the Object Mapping. Has anyone else encountered this issue? Added Screens for your reference. Thanks, Sudam.Solved36Views0likes3CommentsHow to call/get a keyword test ID in Testcomplete?
I am uploading file A from keyword test (UPLOADFILE_A) from Testcomplete to our site. After file is uploaded in our site, it takes 20/30 mins on our end to process the file and after the file is processed I want to let know TestComplete to upload file B. How can I call Testcomplete and let it know to run the Keyword test (UPLOADFILE_B) that uploads File B. Need help, thanks66Views0likes6Commentshow to get name of a keyword module started from another keyword module
Hi guys, is there a programmatic way to get the name of a keyword module, started from another keyword module? I need to identify a failing module in event handler. I'm aware of these methods, but all of them return only the name of main module, from which the child module was run (viaRun Keyword Module): Project.TestItems.Current.Name - returns name of the main keyword module aqTestCase.CurrentTestCase.Name - returns name of the main keyword module Project.TestItems.Current.ElementToBeRun.Caption - returns "KeywordTests -" + name of the main keyword module For now, I solved the problem by adding Set Variable Value action at start of every keyword module, which sets the project variable with hardcoded module name. But I don't like this solution, because it requires more steps and can cause potential failure in case the module name changes and someone forgets to change also the hardcoded string in given module.Solved35Views0likes3Comments