Test case no longer functioning the same as yesterday

Hello,

I had a test case recorded via Windows Recorder working yesterday and now it fails to run the way it used to and I can’t figure out why.
Also, my Windows Recorder can’t seem to identify the same Windows Application elements I referred to yesterday as the mouse click action takes place slightly to the left of the element I need and there is a lack of green highlighting around the element, meaning it cannot find it.

Any insight would be very much appreciated!

import static com.kms.katalon.core.checkpoint.CheckpointFactory.findCheckpoint
import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import static com.kms.katalon.core.testdata.TestDataFactory.findTestData
import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject
import static com.kms.katalon.core.testobject.ObjectRepository.findWindowsObject
import com.kms.katalon.core.checkpoint.Checkpoint as Checkpoint
import com.kms.katalon.core.cucumber.keyword.CucumberBuiltinKeywords as CucumberKW
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile
import com.kms.katalon.core.model.FailureHandling as FailureHandling
import com.kms.katalon.core.testcase.TestCase as TestCase
import com.kms.katalon.core.testdata.TestData as TestData
import com.kms.katalon.core.testng.keyword.TestNGBuiltinKeywords as TestNGKW
import com.kms.katalon.core.testobject.TestObject as TestObject
import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WS
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI
import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows
import internal.GlobalVariable as GlobalVariable
import org.openqa.selenium.Keys as Keys

Windows.startApplicationWithTitle('C:\Program Files\ -----Left out application name for security ------,
‘’)

Windows.click(findWindowsObject(‘BDAR3/Message Selection’))

Windows.setText(findWindowsObject(‘BDAR3/Message Selection’), ‘BDAR’)

Windows.doubleClick(findWindowsObject(‘Object Repository/BDAR3/BDAR Message’))

Windows.click(findWindowsObject(‘Object Repository/BDAR3/Terrain Description’))

Windows.click(findWindowsObject(‘Object Repository/BDAR3/Field 1’))

Windows.setText(findWindowsObject(‘BDAR3/Field 1’), Terrain_Description)

Windows.doubleClick(findWindowsObject(‘Object Repository/BDAR3/ListItem(1)’))

Windows.click(findWindowsObject(‘Object Repository/BDAR3/Show Preview’))

Windows.getText(findWindowsObject(‘Object Repository/BDAR3/Text’))

WebUI.verifyElementText(findTestObject(null), Data_Code)

Windows.click(findWindowsObject(‘Object Repository/BDAR3/Hide Preview’))

Windows.click(findWindowsObject(‘Object Repository/BDAR3/Validate Form’))

Windows.click(findWindowsObject(‘Object Repository/BDAR3/OK’))

Did you remove the element from this line for security reasons or did you do some “clean-up” of your elements in the OR? Since it is not “findWindowsObject” but a “findTestObject”, maybe it’s not supposed to be in this code.