From a8bfc4bf991bea3dc57cdbab349dc44169671f0c Mon Sep 17 00:00:00 2001 From: Sammy Jelin Date: Mon, 29 Jun 2015 10:26:47 -0700 Subject: [PATCH] chore(docs): document inheritance from webdriver --- lib/element.js | 1 + lib/locators.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/element.js b/lib/element.js index f4f652527..f89b7032a 100644 --- a/lib/element.js +++ b/lib/element.js @@ -666,6 +666,7 @@ ElementArrayFinder.prototype.allowAnimations = function(value) { * expect(input.getAttribute('value')).toBe('Foo123'); * * @constructor + * @extends {webdriver.WebElement} * @param {Protractor} ptor * @param {ElementArrayFinder} elementArrayFinder The ElementArrayFinder * that this is branched from. diff --git a/lib/locators.js b/lib/locators.js index a3e68468f..7f812ec7c 100644 --- a/lib/locators.js +++ b/lib/locators.js @@ -8,7 +8,7 @@ var clientSideScripts = require('./clientsidescripts.js'); * Angular applications by binding, model, etc. * * @alias by - * @augments webdriver.Locator.Strategy + * @extends {webdriver.By} */ var ProtractorBy = function() {}; var WebdriverBy = function() {};