循环在gebish测试

时间:2013-01-22 09:28:05

标签: loops groovy geb

我需要在gebish测试中使用循环。 实施例

def "refresh page with interval one min"() {
  for (int i = 0; i < 30; i++) {
    when:
      sleep 1000    
    then:
      println "=^_^="
  }
}

但我什么都没有

1 个答案:

答案 0 :(得分:4)

你的循环应该进入spock块,

when:
    30.times{
        to MyPage
        sleep 1000           
    }