Page 1 of 1

Can eValid handle mutli text input fields

PostPosted: Thu Oct 22, 2015 8:26 am
by RobertV
Hiya.

New member to this forum, a quick questions please.

Can eValid handle multiple form text input fields.

The application I'm using with eValid has a few input fields.

Thanks

Re: Can eValid handle mutli text input fields

PostPosted: Fri Oct 23, 2015 1:08 pm
by eValid
RobertV wrote:Hiya.

New member to this forum, a quick questions please.

Can eValid handle multiple form text input fields.

The application I'm using with eValid has a few input fields.

Thanks


Thanks for posting RobertV very good question.

First, here is a description of how eValid looks into your page:

http://www.e-valid.com/Products/Documen ... cture.html

So the first thing to do is figure out where the text items are in the page, and you do this with the PageMap...to find the names or ID tags of the specific elements.

Once you find the first element then you use an "IndexMove +n" to move down the page (down the DOM tree) to the next element that you want to feed data into.

Basically this is an initial find and then a sequence of IndexInputValue commands..

But as the example below shows, if you don't know the specific index offset then you can move one down and search for the next matching element:

http://www.e-valid.com/Products/Documen ... ple06.html

-- eValid Support