Configuring wait time for Internet Explorer functionality

Enable the Internet Explorer wait functionality and define the time (in seconds) for the Internet Explorer browser to wait before the required page loads the content and then execute the commands.

The wait time setting is also applicable for Microsoft Edge with Internet Explorer mode for the following commands:

  • Object Cloning
  • Mouse Click
  • Insert Keystrokes
  • MetaBot

Procedure

  1. Navigate to the Enterprise Client application path.
  2. From the list of files, open the AA.Settings.xml file with an XML editor such as Notepad++.
  3. Enable Internet Explorer wait functionality by adding the waitforpageload tag: The value is 0 for disable and 1 for enable.
    <configuration>
    <main> 
    <options>   
      <advancedsettings>
      <waitforpageload>1</waitforpageload> 
      </advancedsettings>
     </options>
    </main>
    </configuration>
  4. Set the wait time in seconds for Internet Explorer by adding the ietimeoutvalue tag:
    <configuration>
    <main> 
    <options>   
      <runtimesettings>
      <ietimeoutvalue>20</ietimeoutvalue> 
      </runtimesettings>
     </options>
    </main>
    </configuration>
  5. Save and close the file.