Skip to content

Commit 43db645

Browse files
committed
Missed a file in revision 8f988e0
1 parent c0bd222 commit 43db645

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

javascript/webdriver/test/webdriver_test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ function testWebElement_resolvesBeforeCallbacksOnWireValueTrigger() {
13281328
messages.push('element resolved');
13291329
});
13301330

1331-
webdriver.promise.when(element.getId_(), function() {
1331+
webdriver.promise.when(element.getId(), function() {
13321332
messages.push('wire value resolved');
13331333
});
13341334

@@ -1822,7 +1822,7 @@ function testFindElements() {
18221822
function assertTypeAndId(index) {
18231823
assertTrue('Not a WebElement at index ' + index,
18241824
elements[index] instanceof webdriver.WebElement);
1825-
elements[index].getId_().
1825+
elements[index].getId().
18261826
then(callbacks[index] = callbackHelper(function(id) {
18271827
webdriver.test.testutil.assertObjectEquals(json[index], id);
18281828
}));
@@ -1864,7 +1864,7 @@ function testFindElements_byJs() {
18641864
function assertTypeAndId(index) {
18651865
assertTrue('Not a WebElement at index ' + index,
18661866
elements[index] instanceof webdriver.WebElement);
1867-
elements[index].getId_().
1867+
elements[index].getId().
18681868
then(callbacks[index] = callbackHelper(function(id) {
18691869
webdriver.test.testutil.assertObjectEquals(json[index], id);
18701870
}));
@@ -1910,7 +1910,7 @@ function testFindElements_byJs_filtersOutNonWebElementResponses() {
19101910
function assertTypeAndId(index, jsonIndex) {
19111911
assertTrue('Not a WebElement at index ' + index,
19121912
elements[index] instanceof webdriver.WebElement);
1913-
elements[index].getId_().
1913+
elements[index].getId().
19141914
then(callbacks[index] = callbackHelper(function(id) {
19151915
webdriver.test.testutil.assertObjectEquals(json[jsonIndex], id);
19161916
}));
@@ -1945,7 +1945,7 @@ function testFindElements_byJs_convertsSingleWebElementResponseToArray() {
19451945
then(callback1 = callbackHelper(function(elements) {
19461946
assertEquals(1, elements.length);
19471947
assertTrue(elements[0] instanceof webdriver.WebElement);
1948-
elements[0].getId_().
1948+
elements[0].getId().
19491949
then(callback2 = callbackHelper(function(id) {
19501950
webdriver.test.testutil.assertObjectEquals(json, id);
19511951
}));

0 commit comments

Comments
 (0)