TestComplete Trial Chrome not recording
I am part of a team evaluating TestComplete for my company. For some reason when I record a test nothing is getting into the keyword test. It open chrome but that is it. No recording of the application once I am in Chrome. I am using TestComplete 15. Any help is appreciated. Thanks!Solved2.9KViews0likes18CommentsVerifying a URL in Edge
How can I do a property checkpoint on a URL in the Edge browser? I used to be able to do this in IE (see below) but now after switching to Edge, I am not seeing a way to do this through checkpoints. This is the only option I am seeing: aqObject.CheckProperty(Aliases.browser.BrowserWindow, "WndCaption", cmpEqual, "Enrollment Barcodes and 1 more page - Work - Microsoft​ Edge"); In the Object Spy, I can't seem to do map the actual URL. Is it possible to do this? EDIT: In IE, I could and still can do this: aqObject.CheckProperty(url, "wText", cmpEqual, "URL");Solved3.3KViews0likes9CommentsClicking 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.3KViews0likes16CommentsWeb Menu Dropdowns Clicks randomly selecting from the menu dropdowns
I am attempting to do menu dropdown selections testing. The menu is itself a textnode until it gets populated by the menu option. When I recorded the original test the menus that I selected populated the menu title with that name. On a regular basis I will have tests that will have menu options that have various names various menus departments and other menu clicks fields the drop list is always changing depending on what was selected from a previous menu option. So one menu option can affect what is in another menu's options. I need to test these dropdown fields randomly and I will not know what is in the dropdown fields. Is there away to do this within TestComplete. Or is there a listing of example code that I can add to the unit script?2KViews0likes9CommentsWill there be support for Hybrid Apps using a webview (like cordova/phonegap) as ui using Appium?
I can only find support for actual hybrid app testing using the legacy methids. But they require devices connected localy. No cloud device farm options as far as I could find. But using a device farm is one of my main requirements. Will there be support for hybrid apps using appium in the short future? Are there any known workarounds to testing a hybrid app using appium that allows to record the tests instead of pure scripting? (else I'd rather use webdriverio + jasmine or sortalike).Solved1.7KViews0likes4CommentsWhen playing back a keyword script in Firefox v78.7.0 the autocomplete does not work
Our team is evaluating Test complete version 14.81. We have a lot of web applications that we are trying this tool on. My current script has a website that I browse to using Firefox and once the web site is loaded, there is a user lookup icon that is clicked. Once this page opens, the script types in the first user name from my excel spreadsheet. Next the website auto will lookup or autocomplete the query for the user then you can click on the user's profile. This is the part that does not work when we play back the actions in the script. We added a delay of 15 seconds and this did not work either. Is there something wrong during playback?Solved1KViews0likes2CommentsWhy Would A script Record Differently
I had these scripts that worked perfectly fine and then I had the audacity to take two days of vacation The scripts no longer work today and when I went to re-record (It is not what i want to to) they recorded differently I realize that an instance may change - however I can not see it changing all that much Keyword converted to script This script worked perfectly It no longer does def EnterQ1(): Browsers.Item[btChrome].Run("https://internal.pers.state.or.us/web/html/isd/TOS/QA/qas_resources.shtml") Aliases.browser.BrowserWindow.Click(228, 141) Aliases.browser.BrowserWindow.Maximize() Aliases.browser.pageQasTestLinks.linkQat1Clarety2.Click() Aliases.browser.pageLogInToOregonPersQat1.Wait() Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.textboxUserId.Click() Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.textboxUserId.SetText("schkent1") Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.textboxUserId.Keys("[Tab]") #Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.passwordboxPassword.SetText(Project.Variables.Password3) #Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.passwordboxPassword.SetText(Project.Variables.Password4) Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.passwordboxPassword.SetText(Project.Variables.Password1) Aliases.browser.pageLogInToOregonPersQat1.formKcFormLogin.submitbuttonLogIn.ClickButton() RE-Reqcorded and now working fine def EnterQ1_(): Browsers.Item[btChrome].Run("https://internal.pers.state.or.us/web/html/isd/TOS/QA/qas_resources.shtml") Aliases.browser.BrowserWindow.Click(193, 133) Aliases.browser.BrowserWindow.Maximize() Aliases.browser.pageQasTestLinks.linkQat1Clarety.Click() Aliases.browser.pageAuth.Wait() Aliases.browser.pageAuth.formKcFormLogin.textboxUserId.Click() Aliases.browser.pageAuth.formKcFormLogin.textboxUserId.SetText("schkent1") Aliases.browser.pageAuth.formKcFormLogin.textboxUserId.Keys("[Tab]") Aliases.browser.pageAuth.formKcFormLogin.passwordboxPassword.SetText(Project.Variables.Clarety_V) Aliases.browser.pageAuth.formKcFormLogin.submitbuttonLogIn.ClickButton()Solved1.8KViews0likes7CommentsTest complete Video Recorder is not recording all screens of the test
I've installed VLC player 64 bit and integrated it with test complete 14.8 (64 bit) and when I run the tests screen recordings are getting stored in logs but the recording is Incomplete. If the run time of my test case is 2 minutes for that test recording video duration like 1 minute. Video is not capturing end to end test flow rather missing some actions. Please provide us some solution on it.1.3KViews0likes4CommentsAutomation in Flutter application does not work
Hello I have an application developed in Flutter but i can't automate it. I'm using a cell phone connected to my machine. With the app Mobile Orders app it's OK. Am I doing something wrong? I'm using TestComplete version: 14.90.432.7 x641.7KViews0likes5CommentsCommon data driven loop for login scenario capable to reading data from different spreadsheets
I am trying to create a login testcase which is data driven to read the login credentials from a spreadsheet. Also this testcase should be capable of reading data from different spreadsheets So that I could use this to different scenario. First part is done. Need assistance with the second part.Solved935Views0likes1Comment