ContributionsMost RecentMost LikesSolutionsRe: TestComplete not highlighting all JavaScript Reserved Words Hi Alex, Here is some code that I have: const fileDriver = DDT.ExcelDriver(filePath, sheetName); fileDriver.Name = "enterNewMember"; while(!fileDriver.EOF()) { let LineOfBusiness = fileDriver.Value("Line of Business"); In the above example, the "const", and "while" are highlighted as JavaScript reserved words but "let" is not. TestComplete not highlighting all JavaScript Reserved Words Has anyone run across this scenario? I have a JavaScript project in TestComplete 15.3 but not all JavaScript reserved words are being highlighted as I create my script test. The words let, await, and export are not highlighted as JavaScript reserved words. I thought perhaps it wasn't highlighting ECMAScript 5 and 6 words, but enum and super are ECMAScript 5 and 6 words that are showing up as highlighted. I have attached a screenshot showing which words TestComplete is highlighting and which JavaScript reserved words it is not highlighting. Any assistance/explanation would be appreciated. Thanks! Clicking on a button on a browser popup with Microsoft Edge and TestComplete 14.92 Hello, I'm utilizing TestComplete 14.92 for automated regression testing and would like to write code to have it click on a button called "Open" on a browser popup after accessing the internet via Microsoft Edge and going to an install link so I can then install the application and begin writing automated regression tests for that application. Installing the tested application each time instead of just opening it ensures that we are testing the most updated version at all times. TestComplete doesn't seem to want to identify this button on the browser popup (or even the browser popup itself) and when I record a keyword test to see what it does, it just gives me coordinates on the web page to click on. I don't want to hard code these coordinates because at any time, that browser popup could change location/position and then my test will not work. It seems as though it is browser specific so seems to be at a browser level but the popup itself, let alone the "Open" button is not spotted when looking in Object browser under Microsoft Edge inside of TestComplete. Does anyone have any suggestions for how to get TestComplete to recognize the browser popup and the "Open" button on that popup? Solved