# Mouse click

![](https://1755238209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNnEkyZmLMSWTDXxpygbG%2Fuploads%2Fgit-blob-cb9be7a917e000983bd0a55894340f58b7d1c2d1%2F0%20\(27\).png?alt=media)

Element that mouse-clicks a selected control element. The component works correctly only inside the SAP container.

![](https://1755238209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNnEkyZmLMSWTDXxpygbG%2Fuploads%2Fgit-blob-e498e78db0dc7c999429b51058da604b0f9b96fb%2F1%20\(20\).png?alt=media)

Properties

\- Element ID: \[String] ID of ab element

\- Element: \[LTools.SAP.Model.UIItem] Reference to a control element

\- Timeout\*: \[Int32] Maximum waiting time for process completion (ms)

```
C#
LTools.SAP.SapApp app = LTools.SAP.SapApp.Init(wf);
app.Click("/app/con[0]/ses[0]/wnd[0]/tbar[0]/btn[0]");

Python
app = LTools.SAP.SapApp.Init(wf)
app.Click("/app/con[0]/ses[0]/wnd[0]/tbar[0]/btn[0]")

JavaScript
var app = _lib.LTools.SAP.SapApp.Init(wf);		
app.Click("/app/con[0]/ses[0]/wnd[0]/tbar[0]/btn[0]");
```
