jrock2004
jrock2004

Reputation: 3501

Importing other groovy scripts -- getting errors

I am trying to build a groovy class that holds common methods. Getting this error and not sure how to fix

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

Here is the import line in my other script

import pages.manage.*

Thoughts?

Upvotes: 3

Views: 3347

Answers (1)

Erik Pragt
Erik Pragt

Reputation: 14657

you need to specify the package in the script you are including, like 'package pages.manage'.

Upvotes: 11

Related Questions