1

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

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

但我什么都没有

4

1 回答 1

4

Your loop should go inside the spock blocks,

when:
    30.times{
        to MyPage
        sleep 1000           
    }
于 2013-01-23T15:52:54.963 回答