{"id":74,"date":"2020-05-28T07:39:21","date_gmt":"2020-05-28T07:39:21","guid":{"rendered":"https:\/\/sitegrammar.com\/?p=74"},"modified":"2020-06-29T06:17:42","modified_gmt":"2020-06-29T06:17:42","slug":"selenium-ide-arrays","status":"publish","type":"post","link":"https:\/\/sitegrammar.com\/selenium-ide-arrays\/","title":{"rendered":"Selenium IDE Arrays"},"content":{"rendered":"\n
Working with arrays in Selenium IDE can be a bit confusing at first but don’t worry. I’ll show you how to create an array, add elements to an array, and access elements within an array.<\/p>\n\n\n\n
To create an array, use this: Command<\/strong> = It works! But how does<\/span> it work? <\/p>\n\n\n\n Congratulations, you now have to power to create arrays in Selenium IDE! Please use this power wisely.<\/p>\n\n\n\n Learn more about the execute script command here.<\/a><\/p>\n\n\n\n There are several ways to add elements to an array. I’ll show you how to add elements using To initialize an array and add elements to it using This method is perfect for creating arrays that do not change. In a single command, it creates an array and adds elements to it. <\/p>\n\n\n\n To add an element to an array using Each new element is inserted at the end of the array. If you are planning to add additional elements later in your program, this method is ideal. <\/p>\n\n\n\n To add an element to an array using the I prefer not to use this method because at the time of writing it does not work with Selenium IDE’s forEach Control Flow command. You’ll need to create your own custom loop to iterate over the array.<\/p>\n\n\n\n There are several ways to read the elements in an array. I’ll show you how to read elements using the for each command and using the element’s index.<\/p>\n\n\n\n To read elements using the Here is an example of its use:<\/p>\n\n\n\n In this example, I am iterating through an array called arrEmployees and writing each element value to a Google form. <\/p>\n\n\n\n To read elements using the element’s index in an array, simply include the index of the element when calling the array.<\/p>\n\n\n\n Here is an example:<\/p>\n\n\n\n In this example, I am echoing the value of the 2nd element in the array: “orange”. <\/p>\n\n\n\n That’s all for now folks! You now possess invaluable knowledge that grants the power to create, edit, and read arrays and their elements. Thanks for reading!<\/p>\n","protected":false},"excerpt":{"rendered":" Working with arrays in Selenium IDE can be a bit confusing at first but don’t worry. I’ll show you how to create an array, add elements to an array, and access elements within an array. Create an Array in Selenium IDE To create an array, use this: Command = execute script | Target = return[] …<\/p>\nexecute script<\/code> | Target<\/strong> =
return[]<\/code> | Value<\/strong> =
myArray<\/code><\/p>\n\n\n\n
<\/figure>\n\n\n\n
execute script<\/code> tells Selenium IDE that we want to run a JavaScript snippet. <\/li>
return[]<\/code> is the JavaScript snippet that we want to run.<\/li>
myArray<\/code> is the variable where our return value will be stored.<\/li><\/ul>\n\n\n\n
myArray<\/code> to reference (or point to) this empty array. <\/li>
Add Elements to an Array in Selenium IDE<\/h2>\n\n\n\n
execute script<\/code>,
array.concat<\/code>, and the
store<\/code> command. <\/p>\n\n\n\n
Adding array elements using execute script<\/h3>\n\n\n\n
execute script<\/code>, use this: Command<\/strong> =
execute script<\/code> | Target<\/strong> =
return [1,2,3]<\/code> OR<\/strong>
return [\"Element 1\", \"Element 2\", \"Element 3\"]<\/code> | Value<\/strong> =
myArray<\/code><\/p>\n\n\n\n
Adding array elements using array.concat<\/h3>\n\n\n\n
array.concat<\/code>, use this: Command<\/strong> =
execute script<\/code> | Target<\/strong> =
return ${myArray}.concat(\"Value to store\")<\/code> | Value<\/strong> =
myArray<\/code><\/p>\n\n\n\n
Adding array elements using the store command<\/h3>\n\n\n\n
store<\/code> command, use this: Command<\/strong> =
store<\/code> | Target<\/strong> =
The element I want to add<\/code> | Value<\/strong> =
myArray[0]<\/code>. To add multiple elements to an array you can use a Control Flow command<\/a> to create a loop in order to increment the index value.<\/p>\n\n\n\n
Read Elements in an Array in Selenium IDE<\/h2>\n\n\n\n
Reading elements in an array using the for each command <\/h3>\n\n\n\n
for each<\/code> command, use this: Command<\/strong> =
for each<\/code> | Target<\/strong> =
myArray<\/code> | Value<\/strong> =
iterator<\/code><\/p>\n\n\n\n
<\/figure>\n\n\n\n
Reading elements in an array using the element’s index<\/h3>\n\n\n\n
<\/figure>\n\n\n\n