splitting long lines
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -810,7 +810,8 @@ Casper.prototype.getCurrentUrl = function getCurrentUrl() { | ... | @@ -810,7 +810,8 @@ Casper.prototype.getCurrentUrl = function getCurrentUrl() { |
810 | * @param String attribute The attribute name to lookup | 810 | * @param String attribute The attribute name to lookup |
811 | * @return String The requested DOM element attribute value | 811 | * @return String The requested DOM element attribute value |
812 | */ | 812 | */ |
813 | Casper.prototype.getElementAttribute = Casper.prototype.getElementAttr = function getElementAttr(selector, attribute) { | 813 | Casper.prototype.getElementAttribute = |
814 | Casper.prototype.getElementAttr = function getElementAttr(selector, attribute) { | ||
814 | "use strict"; | 815 | "use strict"; |
815 | this.checkStarted(); | 816 | this.checkStarted(); |
816 | return this.evaluate(function _evaluate(selector, attribute) { | 817 | return this.evaluate(function _evaluate(selector, attribute) { | ... | ... |
-
Please register or sign in to post a comment