Page 1 of 1

how to edit element's fields

Posted: Mon Nov 04, 2019 6:36 pm
by IvanT
Hi. i have a question.
How to change field (GMSText) in element?

Re: how to edit element's fields

Posted: Tue Nov 05, 2019 8:28 am
by odklizec
Hi,

Basically, you need to create 3 repo elements, with these xpaths:

Code: Select all

/form[@name='GeoOptions']//container[@name='LongEdit']/container[@name='BorderPanel']/text[@name='GradNEdit']

/form[@name='GeoOptions']//container[@name='LongEdit']/container[@name='BorderPanel']/text[@name='MinNEdit']

/form[@name='GeoOptions']//container[@name='LongEdit']/container[@name='BorderPanel']/text[@name='SecNEdit']
Then try to use KeySequence or SetValue action to change/edit these fields. You may also need to use KeyShortcut (Ctrl+A) to select entire content of given field, before applying KeySequence or SetValue. Hope this helps?