After updating to 7.9.1 from 7.8.0 my project is broken (Windows 10)

Hi @Jass

Thank you for you help. It looks like I did exactly what @duyluong suggested:

"duyluongKatalon Developer

Jan 21

Hi @Sdhongadi

To download v7.8.2 packages, you can download from Github: https://github.com/katalon-studio/katalon-studio/releases/tag/v7.8.2 .

Back to the orginal issue, v7.8.2 and earlier this script are accepted by Groovy Compiler:

import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords

import WSBuiltInKeywords as WS
import WebUiBuiltInKeywords as WebUI

but in v7.9.0 and onward, you should manually change it to because we use the new Groovy Eclipse compiler engine:

import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WS
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI
```"
1 Like