From fc3028fc1987762300b4f98ea1e5dc1c12c59d7e Mon Sep 17 00:00:00 2001 From: Max O'Cull Date: Fri, 2 Jun 2017 15:41:42 -0400 Subject: [PATCH] Fix get_attribute --- ide-plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide-plugin.js b/ide-plugin.js index 24bd54dd..e68d9c80 100644 --- a/ide-plugin.js +++ b/ide-plugin.js @@ -349,7 +349,7 @@ WDAPI.Element.prototype.click = function() { }; WDAPI.Element.prototype.getAttribute = function(attributeName) { - return this.ref + "->attribute(" + xlateArgument(attributeName) + ")"; + return this.ref + "->get_attribute(" + xlateArgument(attributeName) + ")"; }; WDAPI.Element.prototype.getText = function() {