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

Commit 4fd060a

Browse files
committed
fix (element): Allow ElementFinder to be passed to actions directly.
Previously, do to an action such as drag and drop, one would have to use `element(by.foo).find()`. Now, just passing `element(by.foo)` works. For example: ```javascript browser.actions().doubleClick(element(by.id('mybutton'))).perform(); ```
1 parent 0c4ef69 commit 4fd060a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/protractor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var DEFER_LABEL = 'NG_DEFER_BOOTSTRAP!';
1111
var WEB_ELEMENT_FUNCTIONS = [
1212
'click', 'sendKeys', 'getTagName', 'getCssValue', 'getAttribute', 'getText',
1313
'getSize', 'getLocation', 'isEnabled', 'isSelected', 'submit', 'clear',
14-
'isDisplayed', 'getOuterHtml', 'getInnerHtml'];
14+
'isDisplayed', 'getOuterHtml', 'getInnerHtml', 'toWireValue'];
1515

1616
var STACK_SUBSTRINGS_TO_FILTER = [
1717
'node_modules/minijasminenode/lib/',

spec/basic/actions_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('using an ActionSequence', function() {
99
expect(sliderBar.getAttribute('value')).toEqual('1');
1010

1111
browser.actions().
12-
dragAndDrop(sliderBar.find(), {x: 400, y: 20}).
12+
dragAndDrop(sliderBar, {x: 400, y: 20}).
1313
perform();
1414

1515
expect(sliderBar.getAttribute('value')).toEqual('10');

0 commit comments

Comments
 (0)