ContributionsMost RecentMost LikesSolutionsRe: TestComplete Runtime Issue Hi please install the AccessDatabaseEngine_X64 or AccessDatabaseEngine_X32 and try it will work Re: How to pass parameters in WshShell.Run hi cold you please use below fromat try like this: param1 = "value1" param2 = "value2" result_string = "The parameters are: {} and {}".format(param1, param2) print(result_string) Re: TestResult.mht Hi ,Please open the edge browser and navigate to the edge://settings/defaultBrowser after that Allow sites to be reloaded in Internet Explorer mode should be allow then open the .mht logs it will open Re: Unable to process SessionCreator.exe Output in TestExecute via TeamCity is this command line for session creator working outside teamcity ? if you use /e at the end of the commandline it will automatically exist the testexecute/testcomplete once execution is done Re: How to handle edge browser popup HI Praveen, we can two ways to handle the popup. 1.Capture Screen Coordinates let coordinates = aqUtils.ScreenToClient(aqDesktop, x, y); 2.Simulate Click at Coordinates let x = coordinates.x; let y = coordinates.y; aqObject.MouseClick(x, y, MouseButton.LeftButton); Re: Need code expression for click right (CLICKR) HI Sanjayram, U can click two ways. 1ocr.Recognize("Your object").BlockByText(m_BlockTxt, m_Position).ClickR 2. OCR.RecognizeText("Image", "English", OCRSpeed.Fast); let ocrResult = OCR.GetRecognizedText("Image"); let recognizedText = ocrResult.Text; let textPosition = ocrResult.Position; let xOffset = 10; let yOffset = 10; let mousePositionX = textPosition.X + xOffset; let mousePositionY = textPosition.Y + textPosition.Height + yOffset; aqObject.MouseClick(mousePositionX, mousePositionY, MouseButton.RightButton); u can change the posotionxOffset = 20,30,40.....etc Re: Upload File from Stores yes we can the upload document any where in the computer. For example your saying stores-->Files we can stored the document in that path and we can upload we have to write separate function for upload and we have to give proper path(where the document is). Re: about month name differences yes same problem i was faced long back. so i written one function u can use if u want function convertGermanToEnglishMonth(germanMonth) { const monthMappings = { 'Januar': 'January', 'Februar': 'February', 'März': 'March', 'April': 'April', 'Mai': 'May', 'Juni': 'June', 'Juli': 'July', 'August': 'August', 'September': 'September', 'Oktober': 'October', 'November': 'November', 'Dezember': 'December', }; return monthMappings[germanMonth] || germanMonth; } Re: Test Complete: why does the auto-wait timeout value change by it's self? Hi Open the project in TestComplete and review the project settings, specifically those related to the auto-wait timeout. Check if there are any script routines or functions that modify the auto-wait timeout during test execution. Re: The object "textboxJUsername" does not exist Hi have you checked the web license is checked. Please cross check the web license and try. Open the TestComplete File ---->Install Extension---->Web(it should Check)....