Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(element): removed WebElement getSize and getLocation for getRect (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kolodiy authored and cnishina committed Jun 6, 2019
1 parent 4f74a4e commit cc501f7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ export class WebdriverWebElement {}
export interface WebdriverWebElement extends WebElement { [key: string]: any; }

let WEB_ELEMENT_FUNCTIONS = [
'click', 'sendKeys', 'getTagName', 'getCssValue', 'getAttribute', 'getText', 'getSize',
'getLocation', 'isEnabled', 'isSelected', 'submit', 'clear', 'isDisplayed', 'getId',
'takeScreenshot'
'click', 'sendKeys', 'getTagName', 'getCssValue', 'getAttribute', 'getText', 'getRect',
'isEnabled', 'isSelected', 'submit', 'clear', 'isDisplayed', 'getId', 'takeScreenshot'
];

/**
Expand Down

0 comments on commit cc501f7

Please sign in to comment.