Sahi Documentation

SAP Accessor APIs

SAP Elements

_abapEditor

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_abapEditor(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_abapEditor("abapEditor_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_abapEditor("abapEditor_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_abapEditor("abapEditor_id"));
// Check if element is visible
_assert(_isVisible(_abapEditor("abapEditor_id")));
_assertEqual("apple", _getValue(_abapEditor("abapEditor_id")));

_apoGrid

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_apoGrid(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_apoGrid("apoGrid_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_apoGrid("apoGrid_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_apoGrid("apoGrid_id"));
// Check if element is visible
_assert(_isVisible(_apoGrid("apoGrid_id")));

_barChart

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_barChart(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_barChart("barChart_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_barChart("barChart_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_barChart("barChart_id"));
// Check if element is visible
_assert(_isVisible(_barChart("barChart_id")));

_box

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_box(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_box("box_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_box("box_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_box("box_id"));
// Check if element is visible
_assert(_isVisible(_box("box_id")));

_button

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_button(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_button("button_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_button("button_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_button("button_id"));
// Check if element is visible
_assert(_isVisible(_button("button_id")));

_calendar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_calendar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_calendar("calendar_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_calendar("calendar_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_calendar("calendar_id"));
// Check if element is visible
_assert(_isVisible(_calendar("calendar_id")));

_chart

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_chart(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_chart("chart_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_chart("chart_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_chart("chart_id"));
// Check if element is visible
_assert(_isVisible(_chart("chart_id")));

_checkbox

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_checkbox(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_checkbox("checkbox_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _check

Example usage:
_check(_checkbox("checkbox_id"), null);
// Check irrespective of whether it was checked or unchecked
_check(_checkbox("checkbox_name"));
// Uncheck irrespective of whether it was checked or unchecked
_uncheck(_checkbox("checkbox_name"));
Assertions Example assertions:
// Check if element exists
_assertExists(_checkbox("checkbox_id"));
// Check if element is visible
_assert(_isVisible(_checkbox("checkbox_id")));

_colorSelector

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_colorSelector(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_colorSelector("colorSelector_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_colorSelector("colorSelector_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_colorSelector("colorSelector_id"));
// Check if element is visible
_assert(_isVisible(_colorSelector("colorSelector_id")));
_assertEqual("apple", _getValue(_colorSelector("colorSelector_id")));

_combobox

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_combobox(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_combobox("combobox_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setSelected

Example usage:
_setSelected(_combobox("combobox_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_combobox("combobox_id"));
// Check if element is visible
_assert(_isVisible(_combobox("combobox_id")));
_assertEqual("apple", _getValue(_combobox("combobox_id")));

_containerShell

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_containerShell(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_containerShell("containerShell_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_containerShell("containerShell_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_containerShell("containerShell_id"));
// Check if element is visible
_assert(_isVisible(_containerShell("containerShell_id")));

_contextmenu

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_contextmenu(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_contextmenu("contextmenu_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_contextmenu("contextmenu_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_contextmenu("contextmenu_id"));
// Check if element is visible
_assert(_isVisible(_contextmenu("contextmenu_id")));

_contextmenuItem

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_contextmenuItem(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_contextmenuItem("contextmenuItem_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_contextmenuItem("contextmenuItem_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_contextmenuItem("contextmenuItem_id"));
// Check if element is visible
_assert(_isVisible(_contextmenuItem("contextmenuItem_id")));

_ctextfield

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_ctextfield(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_ctextfield("ctextfield_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_ctextfield("ctextfield_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_ctextfield("ctextfield_id"));
// Check if element is visible
_assert(_isVisible(_ctextfield("ctextfield_id")));
_assertEqual("apple", _getValue(_ctextfield("ctextfield_id")));

_customControl

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_customControl(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_customControl("customControl_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_customControl("customControl_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_customControl("customControl_id"));
// Check if element is visible
_assert(_isVisible(_customControl("customControl_id")));

_dialogshell

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_dialogshell(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_dialogshell("dialogshell_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_dialogshell("dialogshell_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_dialogshell("dialogshell_id"));
// Check if element is visible
_assert(_isVisible(_dialogshell("dialogshell_id")));

_dockShell

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_dockShell(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_dockShell("dockShell_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_dockShell("dockShell_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_dockShell("dockShell_id"));
// Check if element is visible
_assert(_isVisible(_dockShell("dockShell_id")));

_eaiViewer2d

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_eaiViewer2d(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_eaiViewer2d("eaiViewer2d_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_eaiViewer2d("eaiViewer2d_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_eaiViewer2d("eaiViewer2d_id"));
// Check if element is visible
_assert(_isVisible(_eaiViewer2d("eaiViewer2d_id")));
_assertEqual("apple", _getValue(_eaiViewer2d("eaiViewer2d_id")));

_eaiViewer3d

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_eaiViewer3d(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_eaiViewer3d("eaiViewer3d_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_eaiViewer3d("eaiViewer3d_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_eaiViewer3d("eaiViewer3d_id"));
// Check if element is visible
_assert(_isVisible(_eaiViewer3d("eaiViewer3d_id")));
_assertEqual("apple", _getValue(_eaiViewer3d("eaiViewer3d_id")));

_gosShell

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_gosShell(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_gosShell("gosShell_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_gosShell("gosShell_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_gosShell("gosShell_id"));
// Check if element is visible
_assert(_isVisible(_gosShell("gosShell_id")));

_graphAdapt

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_graphAdapt(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_graphAdapt("graphAdapt_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_graphAdapt("graphAdapt_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_graphAdapt("graphAdapt_id"));
// Check if element is visible
_assert(_isVisible(_graphAdapt("graphAdapt_id")));
_assertEqual("apple", _getValue(_graphAdapt("graphAdapt_id")));

_gridView

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_gridView(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_gridView("gridView_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_gridView("gridView_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_gridView("gridView_id"));
// Check if element is visible
_assert(_isVisible(_gridView("gridView_id")));

_htmlViewer

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_htmlViewer(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_htmlViewer("htmlViewer_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_htmlViewer("htmlViewer_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_htmlViewer("htmlViewer_id"));
// Check if element is visible
_assert(_isVisible(_htmlViewer("htmlViewer_id")));

_label

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_label(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_label("label_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _doubleClick

Example usage:
_doubleClick(_label("label_id"), "elementText");
Assertions Example assertions:
// Check if element exists
_assertExists(_label("label_id"));
// Check if element is visible
_assert(_isVisible(_label("label_id")));

_listContainer

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_listContainer(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_listContainer("listContainer_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_listContainer("listContainer_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_listContainer("listContainer_id"));
// Check if element is visible
_assert(_isVisible(_listContainer("listContainer_id")));

_map

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_map(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_map("map_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_map("map_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_map("map_id"));
// Check if element is visible
_assert(_isVisible(_map("map_id")));

_menu

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_menu(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_menu("menu_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_menu("menu_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_menu("menu_id"));
// Check if element is visible
_assert(_isVisible(_menu("menu_id")));

_menubar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_menubar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_menubar("menubar_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_menubar("menubar_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_menubar("menubar_id"));
// Check if element is visible
_assert(_isVisible(_menubar("menubar_id")));

_messageWindow

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_messageWindow(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_messageWindow("messageWindow_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _focus

Example usage:
_focus(_messageWindow("messageWindow_id"), null);
Assertions Example assertions:
// Check if element exists
_assertExists(_messageWindow("messageWindow_id"));
// Check if element is visible
_assert(_isVisible(_messageWindow("messageWindow_id")));

_netChart

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_netChart(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_netChart("netChart_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_netChart("netChart_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_netChart("netChart_id"));
// Check if element is visible
_assert(_isVisible(_netChart("netChart_id")));

_offficeIntegration

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_offficeIntegration(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_offficeIntegration("offficeIntegration_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_offficeIntegration("offficeIntegration_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_offficeIntegration("offficeIntegration_id"));
// Check if element is visible
_assert(_isVisible(_offficeIntegration("offficeIntegration_id")));

_okCodeField

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_okCodeField(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_okCodeField("okCodeField_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_okCodeField("okCodeField_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_okCodeField("okCodeField_id"));
// Check if element is visible
_assert(_isVisible(_okCodeField("okCodeField_id")));
_assertEqual("apple", _getValue(_okCodeField("okCodeField_id")));

_password

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_password(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_password("password_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setPassword

Example usage:
_setPassword(_password("password_id"), null);
Assertions Example assertions:
// Check if element exists
_assertExists(_password("password_id"));
// Check if element is visible
_assert(_isVisible(_password("password_id")));

_picture

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_picture(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_picture("picture_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_picture("picture_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_picture("picture_id"));
// Check if element is visible
_assert(_isVisible(_picture("picture_id")));

_popupWindow

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_popupWindow(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_popupWindow("popupWindow_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _focus

Example usage:
_focus(_popupWindow("popupWindow_id"), null);
Assertions Example assertions:
// Check if element exists
_assertExists(_popupWindow("popupWindow_id"));
// Check if element is visible
_assert(_isVisible(_popupWindow("popupWindow_id")));

_radio

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_radio(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_radio("radio_id")
ValueSelected (this is the default attribute used in assertions etc.)
Actions Default event recorded is _check

Example usage:
_check(_radio("radio_id"), null);
// Check irrespective of whether it was checked or unchecked
_check(_radio("radio_name"));
Assertions Example assertions:
// Check if element exists
_assertExists(_radio("radio_id"));
// Check if element is visible
_assert(_isVisible(_radio("radio_id")));

_sapChart

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_sapChart(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_sapChart("sapChart_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_sapChart("sapChart_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_sapChart("sapChart_id"));
// Check if element is visible
_assert(_isVisible(_sapChart("sapChart_id")));
_assertEqual("apple", _getValue(_sapChart("sapChart_id")));

_scrollbar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_scrollbar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_scrollbar("scrollbar_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_scrollbar("scrollbar_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_scrollbar("scrollbar_id"));
// Check if element is visible
_assert(_isVisible(_scrollbar("scrollbar_id")));
_assertEqual("apple", _getValue(_scrollbar("scrollbar_id")));

_scrollContainer

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_scrollContainer(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_scrollContainer("scrollContainer_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_scrollContainer("scrollContainer_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_scrollContainer("scrollContainer_id"));
// Check if element is visible
_assert(_isVisible(_scrollContainer("scrollContainer_id")));

_simpleContainer

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_simpleContainer(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_simpleContainer("simpleContainer_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_simpleContainer("simpleContainer_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_simpleContainer("simpleContainer_id"));
// Check if element is visible
_assert(_isVisible(_simpleContainer("simpleContainer_id")));

_splitter

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_splitter(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_splitter("splitter_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_splitter("splitter_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_splitter("splitter_id"));
// Check if element is visible
_assert(_isVisible(_splitter("splitter_id")));

_splitterContainer

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_splitterContainer(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_splitterContainer("splitterContainer_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_splitterContainer("splitterContainer_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_splitterContainer("splitterContainer_id"));
// Check if element is visible
_assert(_isVisible(_splitterContainer("splitterContainer_id")));

_stage

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_stage(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_stage("stage_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_stage("stage_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_stage("stage_id"));
// Check if element is visible
_assert(_isVisible(_stage("stage_id")));

_statusBar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_statusBar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_statusBar("statusBar_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _doubleClick

Example usage:
_doubleClick(_statusBar("statusBar_id"), "elementText");
Assertions Example assertions:
// Check if element exists
_assertExists(_statusBar("statusBar_id"));
// Check if element is visible
_assert(_isVisible(_statusBar("statusBar_id")));

_statusPane

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_statusPane(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_statusPane("statusPane_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_statusPane("statusPane_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_statusPane("statusPane_id"));
// Check if element is visible
_assert(_isVisible(_statusPane("statusPane_id")));

_tab

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_tab(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_tab("tab_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_tab("tab_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_tab("tab_id"));
// Check if element is visible
_assert(_isVisible(_tab("tab_id")));

_table

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_table(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_table("table_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_table("table_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_table("table_id"));
// Check if element is visible
_assert(_isVisible(_table("table_id")));

_tableCell

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_tableCell(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_tableCell("tableCell_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_tableCell("tableCell_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_tableCell("tableCell_id"));
// Check if element is visible
_assert(_isVisible(_tableCell("tableCell_id")));
_assertEqual("apple", _getValue(_tableCell("tableCell_id")));

_tabStrip

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_tabStrip(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_tabStrip("tabStrip_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_tabStrip("tabStrip_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_tabStrip("tabStrip_id"));
// Check if element is visible
_assert(_isVisible(_tabStrip("tabStrip_id")));

_textbox

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_textbox(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_textbox("textbox_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_textbox("textbox_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_textbox("textbox_id"));
// Check if element is visible
_assert(_isVisible(_textbox("textbox_id")));
_assertEqual("apple", _getValue(_textbox("textbox_id")));

_textEdit

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_textEdit(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_textEdit("textEdit_id")
Valuevalue (this is the default attribute used in assertions etc.)
Actions Default event recorded is _setValue

Example usage:
_setValue(_textEdit("textEdit_id"), "apple");
Assertions Example assertions:
// Check if element exists
_assertExists(_textEdit("textEdit_id"));
// Check if element is visible
_assert(_isVisible(_textEdit("textEdit_id")));
_assertEqual("apple", _getValue(_textEdit("textEdit_id")));

_titlebar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_titlebar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_titlebar("titlebar_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_titlebar("titlebar_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_titlebar("titlebar_id"));
// Check if element is visible
_assert(_isVisible(_titlebar("titlebar_id")));

_toolbar

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_toolbar(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_toolbar("toolbar_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_toolbar("toolbar_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_toolbar("toolbar_id"));
// Check if element is visible
_assert(_isVisible(_toolbar("toolbar_id")));

_toolbarButton

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_toolbarButton(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_toolbarButton("toolbarButton_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_toolbarButton("toolbarButton_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_toolbarButton("toolbarButton_id"));
// Check if element is visible
_assert(_isVisible(_toolbarButton("toolbarButton_id")));

_toolbarControl

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_toolbarControl(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_toolbarControl("toolbarControl_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_toolbarControl("toolbarControl_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_toolbarControl("toolbarControl_id"));
// Check if element is visible
_assert(_isVisible(_toolbarControl("toolbarControl_id")));

_tree

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_tree(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_tree("tree_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_tree("tree_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_tree("tree_id"));
// Check if element is visible
_assert(_isVisible(_tree("tree_id")));

_treeNode

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_treeNode(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_treeNode("treeNode_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _doubleClick

Example usage:
_doubleClick(_treeNode("treeNode_id"), "elementText");
Assertions Example assertions:
// Check if element exists
_assertExists(_treeNode("treeNode_id"));
// Check if element is visible
_assert(_isVisible(_treeNode("treeNode_id")));

_treeNodeItem

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_treeNodeItem(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_treeNodeItem("treeNodeItem_id")
Valuetext (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_treeNodeItem("treeNodeItem_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_treeNodeItem("treeNodeItem_id"));
// Check if element is visible
_assert(_isVisible(_treeNodeItem("treeNodeItem_id")));

_userarea

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_userarea(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_userarea("userarea_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _click

Example usage:
_click(_userarea("userarea_id"));
Assertions Example assertions:
// Check if element exists
_assertExists(_userarea("userarea_id"));
// Check if element is visible
_assert(_isVisible(_userarea("userarea_id")));

_window

Sahi ProSahi OSSahi Pro StarterSAP Add-On
NANANA9.0.0

Note@note@
API_window(identifier)
IdentifiersId

Valid Accessors and alternatives:
//Id
_window("window_id")
Value (this is the default attribute used in assertions etc.)
Actions Default event recorded is _focus

Example usage:
_focus(_window("window_id"), null);
Assertions Example assertions:
// Check if element exists
_assertExists(_window("window_id"));
// Check if element is visible
_assert(_isVisible(_window("window_id")));