我正在尝试构建一个包含常用方法的groovy类。得到此错误并且不确定如何修复
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
Compilation incomplete: expected to find the class pages.manage.Common in file:/Users/jsmithers/groovy/Development/groovy/automation/qa-automation/pages/manage/Common.groovy, but the file contains the classes: Common
以下是我的其他脚本中的导入行
import pages.manage.*
思想?
答案 0 :(得分:6)
您需要在包含的脚本中指定包,例如'package pages.manage'。