Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active June 30, 2024 14:38
Show Gist options
  • Save trikitrok/a121d3713c8036869a78 to your computer and use it in GitHub Desktop.
Save trikitrok/a121d3713c8036869a78 to your computer and use it in GitHub Desktop.
var TestTools = {
// some other helpers
// ...
clickDropdownOptionWithGivenValue: function (
selectId, optionValue) {
element(by.css('#' + selectId)).click();
return element(
by.xpath(
'//select[@id="' + selectId +
'"]/option[text()="' + optionValue + '"]')
).click();
}
};
// some other exports
// ...
module.exports.clickDropdownOptionWithGivenValue = TestTools.clickDropdownOptionWithGivenValue;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment