Close browser

Element that stops a browser. It can be used when it is necessary to stop the work with the browser after completing all necessary actions. For example, once all necessary data from a webpage has been collected, closing the browser will help release resources and finish the current process of the robot.

The component works correctly only inside the Open a Browser or Connect to a Browser container.

Properties

The element has only common properties described here. It does not have any unique properties.

Pure code

Below is an example of using the element in the Pure code type process:

LTools.WebBrowser.BrowserApp app = LTools.WebBrowser.BrowserApp.Init(wf, "Free email*", LTools.WebBrowser.Model.BrowserTypes_Short.IE);
app.Close();

Last updated