Module: Qa
- Defined in:
- lib/function/assertions.rb
Overview
E: Assert Assertion text in page
Instance Method Summary collapse
-
#assertEqual(value1, value2, type = 1) ⇒ Object
Assert Equal
type = 1:text(default)
type = 2:title
type = 3:url
type = 4:value
type = 5:maxlength
. -
#assertfalseEqual(value1, value2, type = 1) ⇒ Object
Assert Equal False,
value1 = “String”,
value2 = $ff.text,
type = 1:text(default),
type = 2:title,
type = 3:url
type = 4:value
. -
#assertfalseText(text) ⇒ Object
Assert False text in page.
-
#assertText(text, waittime = $timeout) ⇒ Object
0.0.6.
-
#falseExistsclass(text, tags = 1) ⇒ Object
tags = 1: Link(d).
-
#falseExistshref(text, tags = 1) ⇒ Object
tags = 1: Link(d).
-
#falseExistsid(text, tags = 1) ⇒ Object
tags = 1: Link(d)
tags = 2: Button
tags = 3: Table
tags = 4: Textfield
tags = 5: Div
. -
#falseExistsindex(browser, text, tags = 1) ⇒ Object
tags = 1: Link(d).
-
#falseExiststext(text, tags = 1) ⇒ Object
tags = 1: Link(d).
- #noButtons(arg, text) ⇒ Object
- #noImages(arg, text) ⇒ Object
- #noLinks(arg, text) ⇒ Object
- #noSpans(arg, text) ⇒ Object
- #returnwaitExists(text) ⇒ Object
-
#waitButtons(arg, text) ⇒ Object
0.0.9.
-
#waitExists(text, type = 1) ⇒ Object
Wait Element show.
-
#waitfalseExists(text) ⇒ Object
Wait Element none.
-
#waitImages(arg, text) ⇒ Object
0.0.9.
-
#waitLinks(arg, text) ⇒ Object
0.0.9.
-
#waitSpans(arg, text) ⇒ Object
0.0.9.
Instance Method Details
#assertEqual(value1, value2, type = 1) ⇒ Object
Assert Equal
type = 1:text(default)
type = 2:title
type = 3:url
type = 4:value
type = 5:maxlength
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/function/assertions.rb', line 35 def assertEqual(value1,value2,type=1) #0.0.8 i = 0 if type == 1 then begin assert_equal(value1, value2.text) rescue Exception => e sleep(1) i += 1 if i < $timeout then retry end assert_equal(value1, value2.text) end elsif type == 2 then begin assert_equal(value1, value2.title) rescue sleep(1) i += 1 if i <= $timeout+1 then retry end assert_equal(value1, value2.title) end elsif type == 3 then begin assert_equal(value1, value2.url) rescue sleep(1) i += 1 if i <= $timeout+1 then retry end assert_equal(value1, value2.url) end elsif type == 4 then begin assert_equal(value1, value2.value) rescue sleep(1) i += 1 if i <= $timeout+1 then retry end assert_equal(value1, value2.value) end elsif type == 5 then begin assert_equal(value1, value2.maxlength) rescue sleep(1) i += 1 if i <= $timeout+1 then retry end assert_equal(value1, value2.maxlength) end end end |
#assertfalseEqual(value1, value2, type = 1) ⇒ Object
Assert Equal False,
value1 = “String”,
value2 = $ff.text,
type = 1:text(default),
type = 2:title,
type = 3:url
type = 4:value
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/function/assertions.rb', line 98 def assertfalseEqual(value1,value2,type=1) i = 0 if type == 1 then while value2.text == value1 do sleep(1) if i >= $timeout then assert_equal("Timeout assertfalseEqual", value2.text) break; end i += 1 end elsif type == 2 then while value2.title == value1 do sleep(1) if i >= $timeout then assert_equal("Timeout assertfalseEqual", value2.title) break; end i += 1 end elsif type == 3 then while value2.url == value1 do sleep(1) if i >= $timeout then assert_equal("Timeout assertfalseEqual", value2.url) break; end i += 1 end elsif type == 4 then while value2.value == value1 do sleep(1) if i >= $timeout then assert_equal("Timeout assertfalseEqual", value2.value) break; end i += 1 end end end |
#assertfalseText(text) ⇒ Object
Assert False text in page
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/function/assertions.rb', line 17 def assertfalseText(text) i = 0 while $ff.contains_text(text) do sleep(1) if i>=$timeout then assert_false($ff.contains_text(text)) break; end i=i+1 end end |
#assertText(text, waittime = $timeout) ⇒ Object
0.0.6
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/function/assertions.rb', line 4 def assertText(text,waittime = $timeout) #0.0.6 i = 0 while !$ff.contains_text(text) do sleep(1) if i>=waittime then assert($ff.contains_text(text)) # break; end i=i+1 end end |
#falseExistsclass(text, tags = 1) ⇒ Object
tags = 1: Link(d)
347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
# File 'lib/function/assertions.rb', line 347 def falseExistsclass(text,=1) if == 1 then i = 0 while $ff.link(:class,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.link(:class,text).exists?) break; end end end end |
#falseExistshref(text, tags = 1) ⇒ Object
tags = 1: Link(d)
364 365 366 367 368 369 370 371 372 373 374 375 376 |
# File 'lib/function/assertions.rb', line 364 def falseExistshref(text,=1) if == 1 then i = 0 while $ff.link(:href,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.link(:href,text).exists?) end end end end |
#falseExistsid(text, tags = 1) ⇒ Object
tags = 1: Link(d)
tags = 2: Button
tags = 3: Table
tags = 4: Textfield
tags = 5: Div
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/function/assertions.rb', line 289 def falseExistsid(text,=1) if == 1 then i = 0 while $ff.link(:id,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.link(:id,text).exists?) end end elsif == 2 then i = 0 while $ff.(:id,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.(:id,text).exists?) end end elsif == 3 then i = 0 while $ff.table(:id,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.table(:id,text).exists?) end end elsif == 4 then i = 0 while $ff.text_field(:id,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.text_field(:id,text).exists?) end end end end |
#falseExistsindex(browser, text, tags = 1) ⇒ Object
tags = 1: Link(d)
379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/function/assertions.rb', line 379 def falseExistsindex(browser,text,=1) if == 1 then i = 0 while browser.link(:index,text).exists? do sleep(1) i +=1 if i>=10 then assert(!browser.link(:index,text).exists?) end end end end |
#falseExiststext(text, tags = 1) ⇒ Object
tags = 1: Link(d)
332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/function/assertions.rb', line 332 def falseExiststext(text,=1) if == 1 then i = 0 while $ff.link(:text,text).exists? do sleep(1) i +=1 if i>=10 then assert(!$ff.link(:text,text).exists?) end end end end |
#noButtons(arg, text) ⇒ Object
245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/function/assertions.rb', line 245 def noButtons(arg,text) text.each do |item| i = 0 while $ff.(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( !$ff.(:"#{arg}",item).exists? ) end end end end |
#noImages(arg, text) ⇒ Object
271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'lib/function/assertions.rb', line 271 def noImages(arg,text) text.each do |item| i = 0 while $ff.image(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( !$ff.image(:"#{arg}",item).exists? ) end end end end |
#noLinks(arg, text) ⇒ Object
232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/function/assertions.rb', line 232 def noLinks(arg,text) text.each do |item| i = 0 while $ff.link(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( !$ff.link(:"#{arg}",item).exists? ) end end end end |
#noSpans(arg, text) ⇒ Object
258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/function/assertions.rb', line 258 def noSpans(arg,text) text.each do |item| i = 0 while $ff.span(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( !$ff.span(:"#{arg}",item).exists? ) end end end end |
#returnwaitExists(text) ⇒ Object
393 394 395 396 397 398 399 400 401 |
# File 'lib/function/assertions.rb', line 393 def returnwaitExists(text) nwait(1) #0.0.6 sleep(0.5) if text.exists? then return true else return false end end |
#waitButtons(arg, text) ⇒ Object
0.0.9
191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/function/assertions.rb', line 191 def waitButtons(arg,text) #0.0.9 text.each do |item| i = 0 while !$ff.(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( $ff.(:"#{arg}",item).exists? ) break; end end end end |
#waitExists(text, type = 1) ⇒ Object
Wait Element show
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/function/assertions.rb', line 141 def waitExists(text,type = 1) i = 0 if type == 1 then while !text.exists? do sleep(1) i +=1 if i>=$timeout then assert( text.exists? ) break; end end else begin assert( text.click ) rescue sleep(1) i += 1 retry if i <= $timeout end end end |
#waitfalseExists(text) ⇒ Object
Wait Element none
220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/function/assertions.rb', line 220 def waitfalseExists(text) i = 0 while text.exists? do sleep(1) if i>=$timeout then assert(text.exists?) break; end i +=1 end end |
#waitImages(arg, text) ⇒ Object
0.0.9
205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/function/assertions.rb', line 205 def waitImages(arg,text) #0.0.9 text.each do |item| i = 0 while !$ff.image(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( $ff.image(:"#{arg}",item).exists? ) break; end end end end |
#waitLinks(arg, text) ⇒ Object
0.0.9
165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/function/assertions.rb', line 165 def waitLinks(arg,text) #0.0.9 text.each do |item| i = 0 while !$ff.link(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( $ff.link(:"#{arg}",item).exists? ) break; end end end end |
#waitSpans(arg, text) ⇒ Object
0.0.9
178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/function/assertions.rb', line 178 def waitSpans(arg,text) #0.0.9 text.each do |item| i = 0 while !$ff.span(:"#{arg}",item).exists? do sleep(1) i +=1 if i>=$timeout then assert( $ff.span(:"#{arg}",item).exists? ) break; end end end end |