我正在尝试在我的场景中写一些硒。但是,当我尝试使用以下代码启动 Selenium 时:
before "start selenium", {
given "selenium is up and running", {
selenium = new DefaultSelenium("localhost",
4444, "*firefox", "http://www.google.com.my/")
selenium.start()
}
我收到一个错误:
Error running easyb tests: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, : 7: unable to resolve class DefaultSelenium
我正在尝试实现类似 http://www.theserverside.com/news/thread.tss?thread_id=55184
非常感激。