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).
- #returnwaitExists(text) ⇒ Object
-
#waitExists(text, type = 1) ⇒ Object
Wait Element show.
-
#waitfalseExists(text) ⇒ Object
Wait Element none.
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)
241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/function/assertions.rb', line 241 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)
258 259 260 261 262 263 264 265 266 267 268 269 270 |
# File 'lib/function/assertions.rb', line 258 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
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/function/assertions.rb', line 183 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)
273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/function/assertions.rb', line 273 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)
226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'lib/function/assertions.rb', line 226 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 |
#returnwaitExists(text) ⇒ Object
287 288 289 290 291 292 293 294 295 |
# File 'lib/function/assertions.rb', line 287 def returnwaitExists(text) nwait(1) #0.0.6 sleep(0.5) if text.exists? then return true else return false 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
166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/function/assertions.rb', line 166 def waitfalseExists(text) i = 0 while text.exists? do sleep(1) if i>=$timeout then assert(text.exists?) break; end i +=1 end end |