Module: Qa

Defined in:
lib/function/assertions.rb

Overview

E: Assert Assertion text in page

Instance Method Summary collapse

Instance Method Details

#assertBrowser_Equal(valuetype, value) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/function/assertions.rb', line 138

def assertBrowser_Equal(valuetype,value)
  if valuetype == "title"
 begin
    assert_equal(value, $ff.title)
 rescue
    sleep(1)
    i += 1
    if i <= $timeout+1 then retry
    end
    assert_equal(value, $ff.title)
 end
  end
end

#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
# 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



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/function/assertions.rb', line 159

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

#assertImage_Equal(imagetype, valuetype, value1, value2) ⇒ Object



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
# File 'lib/function/assertions.rb', line 104

def assertImage_Equal(imagetype,valuetype,value1,value2)
  i = 0
  if valuetype == "text" then
 begin
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).text)
 rescue
    sleep(1)
    i += 1
    if i <= $timeout+1 then retry
    end
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).text)
 end
  elsif valuetype == "src" then
 begin
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).src)
 rescue
    sleep(1)
    i += 1
    if i <= $timeout+1 then retry
    end
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).src)
 end
  elsif valuetype == "href" then
 begin
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).href)
 rescue
    sleep(1)
    i += 1
    if i <= $timeout+1 then retry
    end
    assert_equal(value1, $ff.image(:"#{imagetype}",value2).href)
 end
  end
end

#assertSpan_Equal(spantype, valuetype, value1, value2) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/function/assertions.rb', line 89

def assertSpan_Equal(spantype,valuetype,value1,value2)
  i = 0
  if valuetype == "text" then
 begin
    assert_equal(value1, $ff.span(:"#{spantype}",value2).text)
 rescue
    sleep(1)
    i += 1
    if i <= $timeout+1 then retry
    end
    assert_equal(value1, $ff.span(:"#{spantype}",value2).text)
 end
  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)



409
410
411
412
413
414
415
416
417
418
419
420
421
422
# File 'lib/function/assertions.rb', line 409

def falseExistsclass(text,tags=1)
  if tags == 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)



426
427
428
429
430
431
432
433
434
435
436
437
438
# File 'lib/function/assertions.rb', line 426

def falseExistshref(text,tags=1)
  if tags == 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



351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
# File 'lib/function/assertions.rb', line 351

def falseExistsid(text,tags=1)
  if tags == 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 tags == 2 then
 i = 0
 while $ff.button(:id,text).exists? do
    sleep(1)
    i +=1
    if i>=10 then
  assert(!$ff.button(:id,text).exists?)
    end
 end
  elsif tags == 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 tags == 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)



441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/function/assertions.rb', line 441

def falseExistsindex(browser,text,tags=1)
  if tags == 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)



394
395
396
397
398
399
400
401
402
403
404
405
406
# File 'lib/function/assertions.rb', line 394

def falseExiststext(text,tags=1)
  if tags == 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



307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/function/assertions.rb', line 307

def noButtons(arg,text)
  text.each do |item|
 i = 0
 while $ff.button(:"#{arg}",item).exists? do
    sleep(1)
    i +=1
    if i>=$timeout then
  assert( !$ff.button(:"#{arg}",item).exists? )
    end
 end
  end
end

#noImages(arg, text) ⇒ Object



333
334
335
336
337
338
339
340
341
342
343
344
# File 'lib/function/assertions.rb', line 333

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


294
295
296
297
298
299
300
301
302
303
304
305
# File 'lib/function/assertions.rb', line 294

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



320
321
322
323
324
325
326
327
328
329
330
331
# File 'lib/function/assertions.rb', line 320

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



455
456
457
458
459
460
461
462
463
# File 'lib/function/assertions.rb', line 455

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



253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/function/assertions.rb', line 253

def waitButtons(arg,text) #0.0.9
  text.each do |item|
 i = 0
 while !$ff.button(:"#{arg}",item).exists? do
    sleep(1)
    i +=1
    if i>=$timeout then
  assert( $ff.button(:"#{arg}",item).exists? )
  break;
    end
 end
  end
end

#waitExists(text, type = 1) ⇒ Object

Wait Element show



202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/function/assertions.rb', line 202

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



282
283
284
285
286
287
288
289
290
291
292
# File 'lib/function/assertions.rb', line 282

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



267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/function/assertions.rb', line 267

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

0.0.9



226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/function/assertions.rb', line 226

def waitLinks(arg,text) #0.0.9
  assert(true)
  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



240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/function/assertions.rb', line 240

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