Can some one please help me write a code in Ruby using Watir so that I can read any value from a given text file based on position and use it as parameter for any field in a web application.
I am new to Ruby and have no idea how to implement this solution.
What I need is, for example, lets say there is a text file called "Test.txt" in d drive main folder. Say it has text like this
13085216660000019999
In the above text I want read the value from position 4 to 8 and i.e '8521' and store it as variable and use it in a text field as given below
ie.textField(:name, "de2").set 'Variable got from reading the file'
Thanks in Advance....
