Sha256: 9a0f7ac16a7c5733a73ccc9cffd702c3a11635abacea49585149d0a1b599d4d0
Contents?: true
Size: 300 Bytes
Versions: 37
Compression:
Stored size: 300 Bytes
Contents
# include this module if there's a need to have wait_until and wait_while methods in some different scope module Watir module WaitHelper def wait_until(*args, &blk) Wait.until(*args, &blk) end def wait_while(*args, &blk) Wait.while(*args, &blk) end end end
Version data entries
37 entries across 37 versions & 2 rubygems