Simulates a navigation bar action in the browser.

This statement allows Convertigo to navigate in the target web application using the usual navigation bar tools of its internal browser. The action to perform is defined thanks to the Action property.

Property Type Category Description
Action String standard Navigation bar action to perform in browser.
This property defines the navigation bar tool to use. Following actions are available:

backward: goes back to the last visited page,
forward: goes forward to the last visited page,
goTo: accesses the web page which URL is defined in the JavaScript URL property,
refresh: reloads the currently displayed page,
stop.

Note: The goTo action requires the JavaScript URL property to be set.
Comment String standard Describes the object comment to include in the documentation report.
This property generally contains an explanation about the object.
Is active boolean standard Defines whether the statement is active.
JavaScript URL JS expression standard Defines the URL of the page to access when goTo action is set in Action property.
This property is a JavaScript expression evaluated during the transaction execution.
Synchronizer TriggerXMLizer expert Defines how to synchronize the statement.
A synchronizer states how and when accessed pages are considered fully loaded. Only then are data extracted and new pages re-detected.
There are several types of synchronizers, that are described hereafter:

Document completed: The synchronizer waits for a number of documents to be completed. Specify here how many “document completed” events Convertigo has to wait for before assuming that the page is complete. In many cases, when the target application uses HTTP META redirects or JavaScript redirects, the document is loaded several times. You can monitor
==== start parse ======
and
==== Parse end ==(XXXms )====================
traces in the Engine console (debug mode) to count the number of “document completed” events needed for the synchronizer. The Document completed synchronizer can be configured to also stop on alert messages that could pop up. Alert messages do not trigger a “document completed” event and are not detected by this synchronizer. To activate this option, check the Stop on alert checkbox.
XPath: The synchronizer waits until a specified XPath is found. Convertigo tries to evaluate the specified XPath while receiving a web page or executing JavaScript in it. Once the XPath matches at least one node of the page, the synchronizer returns.
Wait time: The synchronizer waits until a specified time is reached (in ms, set via the Timeout property).
Screen Class: The synchronizer waits for one of the selected screen classes to be detected. Several screen classes can be selected to be waited for. The synchronizer returns when one of them is reached.
Download started: The synchronizer waits for a download request. This is the perfect synchronizer to use before a Get attachment statement.
No wait: The synchronizer doesn’t wait and execution proceeds directly.

For all synchronizer types, the maximum waiting time is set using the Timeout property.