> For the complete documentation index, see [llms.txt](https://astro-rpa.gitbook.io/astro-rpa-user-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://astro-rpa.gitbook.io/astro-rpa-user-guide/g_elements/el_basic/els_sap/el_sap_click.md).

# Mouse click

![](/files/O2Jxbq11OthxHXIugxbv)

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

![](/files/9FMhiSOXAT3sz4EDhV34)

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]");
```
