Like:
"TypeError: Cannot find function createComment in
object [object]. (FunctionalTestCase.groovy#372)"
So during some googeling I found these reports:
old htmlunit version
replacing version
Which led to me reporting:
my approach
and the final solution was to put this into your 'BuildConfig.groovy'
plugin("webtest") {
test('net.sourceforge.htmlunit:htmlunit:2.8-SNAPSHOT') {
excludes 'xalan'
excludes 'xml-apis'
}
test('com.canoo.webtest:webtest:3.1-SNAPSHOT') {
excludes 'xalan'
excludes 'xml-apis'
}
test('xalan:xalan:2.7.0') {
excludes 'xml-apis'
}
}
No comments:
Post a Comment