Jump to content
Macro Express Forums

arvind

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by arvind

  1. Thanks Alan,

     

    I will try.

     

    Arvind.

     

    Mouse positioning is a very unreliable way to complete a form. A more machine- and browser-independent approach would be to navigate from one field to another via the tab key, maybe something like this:

     

    ' Place cursor in first field (maybe use the mouse?)

    ' Navigate to Field 1...

    Text Type <TAB>

    ' Copy value to the Clipboard (field will be selected by default)

    Text Type <CTRL>c

    ' Copy the Clipboard to variable T1

    Set Text Variable T1 from Clipboard

     

    ' Navigate to next field...

    Text Type <TAB>

    Text Type <CTRL>c

    Set Text Variable T2 from Clipboard

     

    etc.

  2. Hi All,

     

    I want to navigate a site, enter necessary details in the forms and at the end I want to save the desired page in HTML format.

    I was able to write a Macro using window positions but it is not working correctly on all the machines and browsers.

     

    Can anyone help me in solving the issue. Is there any best way to fill the form instead of using browsers window positions.

    The macro designed should work on all machines and browsers.

     

    Thanks,

    Arvind.

×
×
  • Create New...