Skip to content

Commit

Permalink
fix wrong function call
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlemeshko committed Mar 18, 2020
1 parent 9af735e commit e97be8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/services/combo_box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export function ComboBoxProvider({ getService, getPageObjects }: FtrProviderCont
public async openOptionsList(comboBoxElement: WebElementWrapper): Promise<void> {
const isOptionsListOpen = await testSubjects.exists('~comboBoxOptionsList');
if (!isOptionsListOpen) {
const toggleBtn = await comboBoxElement.findAll('comboBoxToggleListButton');
const toggleBtn = await comboBoxElement.find('comboBoxToggleListButton');
await toggleBtn.click();
}
}
Expand Down

0 comments on commit e97be8e

Please sign in to comment.