<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Class: WebElement</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> </head> <body> <div id="main"> <h1 class="page-title">Class: WebElement</h1> <section> <header> <h2> WebElement </h2> </header> <article> <div class="container-overview"> <dt> <h4 class="name" id="WebElement"><span class="type-signature"></span>new WebElement<span class="signature">(id, driver)</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Element constructor </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>id</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="description last">Element id (e.g. returned by <a href="WebDriver.html#get">WebDriver#get</a>)</td> </tr> <tr> <td class="name"><code>driver</code></td> <td class="type"> <span class="param-type"><a href="WebDriver.html">WebDriver</a></span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line7">line 7</a> </li></ul></dd> </dl> </dd> </div> <h3 class="subsection-title">Members</h3> <dl> <dt> <h4 class="name" id="attr"><span class="type-signature"></span>attr<span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the value of an element's attribute via jQuery.attr method. See also selenium <a href="WebElement.html#getAttr">WebElement#getAttr</a> method. </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line158">line 158</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="css"><span class="type-signature"></span>css<span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the value of an element's css property via jQuery.css method. See also selenium <a href="WebElement.html#getCssProp">WebElement#getCssProp</a> method. </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line173">line 173</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="element"><span class="type-signature"></span>element<span class="type-signature"> :Object</span></h4> </dt> <dd> <div class="description"> element object works like <a href="WebDriver.html#element">WebDriver#element</a>. </div> <h5>Type:</h5> <ul> <li> <span class="param-type">Object</span> </li> </ul> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line19">line 19</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="prop"><span class="type-signature"></span>prop<span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the value of an element's property via jQuery.prop method. </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line165">line 165</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="text"><span class="type-signature"></span>text<span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the text of an element's attribute via jQuery.text method. See also selenium <a href="WebElement.html#getText">WebElement#getText</a> method. </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line180">line 180</a> </li></ul></dd> </dl> </dd> </dl> <h3 class="subsection-title">Methods</h3> <dl> <dt> <h4 class="name" id="clear"><span class="type-signature"></span>clear<span class="signature">(callback(err:Error,element:WebElement))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Clear a TEXTAREA or text INPUT element's value. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,element:WebElement)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line82">line 82</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="click"><span class="type-signature"></span>click<span class="signature">(callback(err:Error,element:WebElement))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Click on an element. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,element:WebElement)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line197">line 197</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="describe"><span class="type-signature"></span>describe<span class="signature">(callback(err:Error,description:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Describe the identified element. This command is reserved for future use; its return type is currently undefined. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,description:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line336">line 336</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="get"><span class="type-signature"></span>get<span class="signature">(selector, <span class="optional">params</span>, callback(err:Error,element:WebElement))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Find element inside current element. `selector` and `params` could accept same values as at <a href="WebDriver.html#get">WebDriver#get</a>. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>selector</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>params</code></td> <td class="type"> <span class="param-type">Object</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>callback(err:Error,element:WebElement)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line265">line 265</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getAttr"><span class="type-signature"></span>getAttr<span class="signature">(name, callback(err:Error,value:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the value of an element's attribute. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>name</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="description last">Attribute's name</td> </tr> <tr> <td class="name"><code>callback(err:Error,value:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line102">line 102</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getCssProp"><span class="type-signature"></span>getCssProp<span class="signature">(propName, callback(err:Error,value:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the value of an element's computed CSS property. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>propName</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="description last">The CSS property name, not the JavaScript property name (e.g. background-color instead of backgroundColor).</td> </tr> <tr> <td class="name"><code>callback(err:Error,value:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line349">line 349</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getList"><span class="type-signature"></span>getList<span class="signature">(selector, <span class="optional">params</span>, callback(err:Error,element:WebElement[]))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Find elements inside current element. `selector` and `params` could accept same values as at <a href="WebDriver.html#get">WebDriver#get</a>. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>selector</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>params</code></td> <td class="type"> <span class="param-type">Object</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>callback(err:Error,element:WebElement[])</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line279">line 279</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getTagName"><span class="type-signature"></span>getTagName<span class="signature">(callback(err:Error,tagName:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get element's tag name. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,tagName:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line186">line 186</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getText"><span class="type-signature"></span>getText<span class="signature">(callback(err:Error,text:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get the visible text (if element is invisible the result will be empty string) of the element. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,text:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line114">line 114</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="getValue"><span class="type-signature"></span>getValue<span class="signature">(callback(err:Error,value:String))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Get value of current element (alias to getAttr('value')). </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,value:String)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line93">line 93</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="isDisabled"><span class="type-signature"></span>isDisabled<span class="signature">(callback(err:Error,disabled:Boolean))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Determine if an element is currently disabled using DOM Element 'disabled' property (works properly for any native controls). </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,disabled:Boolean)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line321">line 321</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="isDisplayed"><span class="type-signature"></span>isDisplayed<span class="signature">(callback(err:Error,displayed:Boolean))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Determine if an element is currently displayed. This method avoids the problem of having to parse an element's 'style' attribute. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,displayed:Boolean)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line362">line 362</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="isEnabled"><span class="type-signature"></span>isEnabled<span class="signature">(callback(err:Error,enabled:Boolean))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Determine if an element is currently enabled. This will generally return true for everything but disabled input elements. NOTE: therefore that native selenium function works properly only for inputs. See <a href="WebElement.html#isDisabled">WebElement#isDisabled</a> method which works properly for all native controls. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,enabled:Boolean)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line309">line 309</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="isSelected"><span class="type-signature"></span>isSelected<span class="signature">(callback(err:Error,selected:Boolean))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Determine if a checkbox or radiobutton is currently selected. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,selected:Boolean)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line373">line 373</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="mouseDown"><span class="type-signature"></span>mouseDown<span class="signature">(<span class="optional">button</span>, callback(err:Error,driver:WebDriver))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Move to the current element and down mouse button. `button` accepts same values as at <a href="WebDriver.html#mouseDown">WebDriver#mouseDown</a>. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>button</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>callback(err:Error,driver:WebDriver)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line232">line 232</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="mouseUp"><span class="type-signature"></span>mouseUp<span class="signature">(<span class="optional">button</span>, callback(err:Error,driver:WebDriver))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Move to the current element and up mouse button. `button` accepts same values as at <a href="WebDriver.html#mouseDown">WebDriver#mouseDown</a>. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>button</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>callback(err:Error,driver:WebDriver)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line248">line 248</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="moveTo"><span class="type-signature"></span>moveTo<span class="signature">(offset, callback(err:Error,element:WebElement))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Move the mouse by an offset of the current element. If the element is not visible, it will be scrolled into view. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>offset</code></td> <td class="type"> <span class="param-type">Object</span> </td> <td class="description last">Object with x, y offsets (relative to the top-left corner of the element) keys. If offset is not set the mouse will be moved to the center of the element.</td> </tr> <tr> <td class="name"><code>callback(err:Error,element:WebElement)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line212">line 212</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="sendKeys"><span class="type-signature"></span>sendKeys<span class="signature">(value, <span class="optional">params</span>, callback(err:Error,element:WebElement))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Send a sequence of key strokes to an element. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>value</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>params</code></td> <td class="type"> <span class="param-type">Object</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"> <h6>Properties</h6> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>clear</code></td> <td class="type"> <span class="param-type">Boolean</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last">If true then 'clear' will be called before sending keys.</td> </tr> </tbody> </table> </td> </tr> <tr> <td class="name"><code>callback(err:Error,element:WebElement)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line57">line 57</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="waitForDetach"><span class="type-signature"></span>waitForDetach<span class="signature">(callback(err:Error,driver:WebDriver))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Wait untill element will be detached from page. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,driver:WebDriver)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line443">line 443</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="waitForDisappear"><span class="type-signature"></span>waitForDisappear<span class="signature">(callback(err:Error,driver:WebDriver))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Wait for element disappear from the page. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>callback(err:Error,driver:WebDriver)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line422">line 422</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="waitForElement"><span class="type-signature"></span>waitForElement<span class="signature">(selector, <span class="optional">params</span>, callback(err:Error,element:WebDriver))</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> Wait for element appear inside current element. `selector` and `params` could accept same values as at <a href="WebDriver.html#waitForElement">WebDriver#waitForElement</a>. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>selector</code></td> <td class="type"> <span class="param-type">String</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>params</code></td> <td class="type"> <span class="param-type">Object</span> </td> <td class="attributes"> <optional><br> </td> <td class="description last"></td> </tr> <tr> <td class="name"><code>callback(err:Error,element:WebDriver)</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="attributes"> </td> <td class="description last"></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="webElement.js.html">webElement.js</a>, <a href="webElement.js.html#line294">line 294</a> </li></ul></dd> </dl> </dd> </dl> </article> </section> </div> <nav> <h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="WebDriver.html">WebDriver</a></li><li><a href="WebElement.html">WebElement</a></li></ul> </nav> <br clear="both"> <footer> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.2</a> on Sat Jun 09 2018 09:48:10 GMT+0300 (MSK) </footer> <script> prettyPrint(); </script> <script src="scripts/linenumber.js"> </script> </body> </html>