ContributionsMost RecentMost LikesSolutionsRe: Specific modal not found in Firefox when keyword test executes (TC 12.) I've not been able to fix this - I rolled back to a build on the SVN where I wasn't getting this error and re-did all the fixes manually. It is now identifying these modals correctly. It's still a mystery to me why it failed. Re: Specific modal not found in Firefox when keyword test executes (TC 12.) On a slightly different modal, it times out trying to find the 'Yes' button and I get the 'Unable to find the object' option - which gives the possiblity of 'Point to the buttonYes on screen" - if I do this, then I get the below message -asking me to map it manually Re: Specific modal not found in Firefox when keyword test executes (TC 12.) I did try using wildcards previously. Note that it worked in Chrome, not firefox and changing the browser at the top of the keyword test, it still worked in Chrome, despite not having the wildcards in place and the namemapping making reference to firefox. I did try adding the wildcards and many combinations before my my initial post, so I don't think that isn't the cause of the issue - unless something is buggy with wildcards? Re: Specific modal not found in Firefox when keyword test executes (TC 12.) I have just tried it again and it has started working.. albeit with ambiguous recognition. I since removed 'Full Name' and replaced with 'BaseURL' below: Specific modal not found in Firefox when keyword test executes (TC 12.) I have a specific dialogue which doesn't identify when running in Firefox (I have tried both 48 and 49 and loaded all patches). I am using TC 12.0. This is causing quite an issue, as I am unable to click yes/no as in the screenshot -so my tests stall and then fail. If I change to Chrome then it will work fine and clicks the "Yes" button. I can verify the button in both in name mapping and in the individual step in the keyword test and it "highlights" it fine, with the red box. However when the test runs, it falls over and does not click the button. I've tried using object spy and object browser and that corectly identifies the button (with the graphic) and I've mapped it from there also from scratch. Note that I have blanked out the logos below. I just wanted to add that similar dialogues with different text but the same Yes/No options elsewhere in the web application also behave the same. I know this did work previously as all my tests were passing. Re: aqEnvironment.GetEnvironmentVariable fail I've fixed this as I echoed HOMEPATH and realised it didn't include "C:\" (it was just "users\builduser\") so I added that in and it works now! Re: aqEnvironment.GetEnvironmentVariable fail joseph_michaud The control moves straight to the else part of the code. I've added debug now to test what that environment variable resolves to - it might be a setup issue on the server. aqEnvironment.GetEnvironmentVariable fail I have a script which uses the following line HOMEPATH = aqEnvironment.GetEnvironmentVariable("HOMEPATH") This fails the script (i.e. the files do not get deleted as they should per the script). I will add that this works fine in Testcomplete12 on my desktop - but on the server running TestExecute12 it fails and it outputs the Log.Error message If I replace it with the hardcoded path, it works HOMEPATH = "C:\users\builduser\" Full script is below - any suggestions why this occurs? Sub DeletePDFFiles ms = 5000 HelpStr = "Delaying script for " & ms & "milliseconds." aqUtils.Delay ms, HelpStr Dim spath, spath2, HOMEPATH HOMEPATH = aqEnvironment.GetEnvironmentVariable("HOMEPATH") sPath1 = HOMEPATH & "\Downloads\ClaimForm*" sPath2 = HOMEPATH & "\Downloads\xxx_UK_xx_xx_xx_T_And_C_2016*" cPath1 = HOMEPATH & "\Downloads\ClaimForm.pdf" cPath2 = HOMEPATH & "\Downloads\xxx_UK_xx_xx_xx_T_And_C_2016.pdf" If aqFileSystem.Exists(cPath1) Then Log.Message "Claim Form Doc Found!" aqFileSystem.DeleteFile(sPath1) If Not aqFileSystem.Exists(cPath1) Then Log.Message "ClaimForm Doc Deleted" Else Log.Error "ClaimForm NOT Deleted" End if Else Log.Error "Claim Form Doc NOT Found!" End if If aqFileSystem.Exists(cPath2) Then Log.Message "T&C Doc Found!" aqFileSystem.DeleteFile(sPath2) If Not aqFileSystem.Exists(sPath2) Then Log.Message "T&C Doc Deleted" Else Log.Error "T&C Doc NOT Deleted" End if Else Log.Error "T&C Doc NOT Found!" End if End Sub SolvedRe: TC 12.0 very slow when running tests. If it helps, I restarted my computer and also the computer running Test Execute (VM) and everything is now running okay. I also make sure all Windows updates were installed. Re: TC 12.0 very slow when running tests. I'm also experiencing this - Upgrading from 11 to 12 my tests run very slowly on test complete and are erratic in the delay between steps. On the server with TE the same is happening. If I manually step through TC is unable to locate the objects on the screen.If I re-target them the naming doesn't change but still cannot highlight them.