How to pass the value separated with comma from the excel/rasta to an array in Ruby.
html looks like this, ....
<li><input type="checkbox" name="order:1" />Burger</li>
<li><input type="checkbox" name="order:2" />Pasta</li>
<li><input type="checkbox" name="order:3" />Fries</li>
...
EXCEL looks like this...
Orders
Burger, Pasta
this code doesnt work
attr_accessor :orders
order = [@orders]
order.each do |i|
.......
........
It should look like this in ruby...
attr_accessor :orders
orders = [ 'burger','pasta '] *#should pass data from excel in the array "**orders**"
orders.each do |i|
@browser.checkbox(:text => i).click
@browser.button(:name => 'save').click
end
So how would i do the passing of the value in excel to an array?
Sorry, I'm still learning Ruby :|