js.getCmbValues.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium Show documentation
Show all versions of aquality-selenium Show documentation
Library around Selenium WebDriver
return (function(element) {
var array = [];
for(var i = 0; i < element.length; i++)
{
array.push(element[i].text);
}
return array;
})(arguments[0]);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy