Just so you know, that you are not using Katalon Recorder as your heading states, but Katalon Studio and the Web Recorder or Web Spy. You can tell because of the coding. Katalon Recorder is a total separate application. The below gives an example of KR.
After you have used the recorder to get a start on your test, then you should go in and “improve” the repeatability of your test. As an example, with the below statement you can add:
WebUI.navigateToUrl('****')
WebUI.waitForPageLoad(10) // or 5 or ???
Similarly goes for:
WebUI.click(findTestObject('Object Repository/Page_Workay Admin Login/button_Logi'))
WebUI.waitForPageLoad(10)
You did add the waitForElementClickable() so just a bit more of that.