tellurium_driver 1.1.11 → 1.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/tellurium_driver.rb +1 -5
- metadata +1 -1
data/lib/tellurium_driver.rb
CHANGED
@@ -52,10 +52,6 @@ class TelluriumDriver
|
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
55
|
-
def document_ready
|
56
|
-
@wait.until{ driver.execute_script(document.readyState) == "complete" }
|
57
|
-
end
|
58
|
-
|
59
55
|
def method_missing(sym, *args, &block)
|
60
56
|
@driver.send sym,*args,&block
|
61
57
|
end
|
@@ -280,6 +276,6 @@ class TelluriumDriver
|
|
280
276
|
driver.quit
|
281
277
|
end
|
282
278
|
|
283
|
-
before(*instance_methods) {
|
279
|
+
before(*instance_methods) { @wait.until{ driver.execute_script(document.readyState) == "complete" } }
|
284
280
|
|
285
281
|
end
|