SAP Accessor APIs

SAP Elements

_abapEditor

SAP Add-On
9.0.0

Note@note@
API_abapEditor(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_abapEditor("abapEditor_id")
//Name
_abapEditor("abapEditor_name")
//Index
_abapEditor(5)
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

SAP Add-On
9.0.0

Note@note@
API_apoGrid(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_apoGrid("apoGrid_id")
//Name
_apoGrid("apoGrid_name")
//Index
_apoGrid(5)
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

SAP Add-On
9.0.0

Note@note@
API_barChart(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_barChart("barChart_id")
//Name
_barChart("barChart_name")
//Index
_barChart(5)
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

SAP Add-On
9.0.0

Note@note@
API_box(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_box("box_id")
//Name
_box("box_name")
//Index
_box(5)
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

SAP Add-On
9.0.0

Note@note@
API_button(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_button("button_id")
//Name
_button("button_name")
//Index
_button(5)
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

SAP Add-On
9.0.0

Note@note@
API_calendar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_calendar("calendar_id")
//Name
_calendar("calendar_name")
//Index
_calendar(5)
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

SAP Add-On
9.0.0

Note@note@
API_chart(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_chart("chart_id")
//Name
_chart("chart_name")
//Index
_chart(5)
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

SAP Add-On
9.0.0

Note@note@
API_checkbox(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_checkbox("checkbox_id")
//Name
_checkbox("checkbox_name")
//Index
_checkbox(5)
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

SAP Add-On
9.0.0

Note@note@
API_colorSelector(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_colorSelector("colorSelector_id")
//Name
_colorSelector("colorSelector_name")
//Index
_colorSelector(5)
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

SAP Add-On
9.0.0

Note@note@
API_combobox(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_combobox("combobox_id")
//Name
_combobox("combobox_name")
//Index
_combobox(5)
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

SAP Add-On
9.0.0

Note@note@
API_containerShell(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_containerShell("containerShell_id")
//Name
_containerShell("containerShell_name")
//Index
_containerShell(5)
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

SAP Add-On
9.0.0

Note@note@
API_contextmenu(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_contextmenu("contextmenu_id")
//Name
_contextmenu("contextmenu_name")
//Index
_contextmenu(5)
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

SAP Add-On
9.0.0

Note@note@
API_contextmenuItem(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_contextmenuItem("contextmenuItem_id")
//Name
_contextmenuItem("contextmenuItem_name")
//Index
_contextmenuItem(5)
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

SAP Add-On
9.0.0

Note@note@
API_ctextfield(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_ctextfield("ctextfield_id")
//Name
_ctextfield("ctextfield_name")
//Index
_ctextfield(5)
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

SAP Add-On
9.0.0

Note@note@
API_customControl(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_customControl("customControl_id")
//Name
_customControl("customControl_name")
//Index
_customControl(5)
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

SAP Add-On
9.0.0

Note@note@
API_dialogshell(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_dialogshell("dialogshell_id")
//Name
_dialogshell("dialogshell_name")
//Index
_dialogshell(5)
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

SAP Add-On
9.0.0

Note@note@
API_dockShell(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_dockShell("dockShell_id")
//Name
_dockShell("dockShell_name")
//Index
_dockShell(5)
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

SAP Add-On
9.0.0

Note@note@
API_eaiViewer2d(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_eaiViewer2d("eaiViewer2d_id")
//Name
_eaiViewer2d("eaiViewer2d_name")
//Index
_eaiViewer2d(5)
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

SAP Add-On
9.0.0

Note@note@
API_eaiViewer3d(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_eaiViewer3d("eaiViewer3d_id")
//Name
_eaiViewer3d("eaiViewer3d_name")
//Index
_eaiViewer3d(5)
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

SAP Add-On
9.0.0

Note@note@
API_gosShell(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_gosShell("gosShell_id")
//Name
_gosShell("gosShell_name")
//Index
_gosShell(5)
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

SAP Add-On
9.0.0

Note@note@
API_graphAdapt(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_graphAdapt("graphAdapt_id")
//Name
_graphAdapt("graphAdapt_name")
//Index
_graphAdapt(5)
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

SAP Add-On
9.0.0

Note@note@
API_gridView(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_gridView("gridView_id")
//Name
_gridView("gridView_name")
//Index
_gridView(5)
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

SAP Add-On
9.0.0

Note@note@
API_htmlViewer(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_htmlViewer("htmlViewer_id")
//Name
_htmlViewer("htmlViewer_name")
//Index
_htmlViewer(5)
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

SAP Add-On
9.0.0

Note@note@
API_label(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_label("label_id")
//Name
_label("label_name")
//Index
_label(5)
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

SAP Add-On
9.0.0

Note@note@
API_listContainer(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_listContainer("listContainer_id")
//Name
_listContainer("listContainer_name")
//Index
_listContainer(5)
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

SAP Add-On
9.0.0

Note@note@
API_map(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_map("map_id")
//Name
_map("map_name")
//Index
_map(5)
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

SAP Add-On
9.0.0

Note@note@
API_menu(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_menu("menu_id")
//Name
_menu("menu_name")
//Index
_menu(5)
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

SAP Add-On
9.0.0

Note@note@
API_menubar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_menubar("menubar_id")
//Name
_menubar("menubar_name")
//Index
_menubar(5)
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

SAP Add-On
9.0.0

Note@note@
API_messageWindow(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_messageWindow("messageWindow_id")
//Name
_messageWindow("messageWindow_name")
//Index
_messageWindow(5)
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

SAP Add-On
9.0.0

Note@note@
API_netChart(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_netChart("netChart_id")
//Name
_netChart("netChart_name")
//Index
_netChart(5)
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

SAP Add-On
9.0.0

Note@note@
API_offficeIntegration(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_offficeIntegration("offficeIntegration_id")
//Name
_offficeIntegration("offficeIntegration_name")
//Index
_offficeIntegration(5)
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

SAP Add-On
9.0.0

Note@note@
API_okCodeField(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_okCodeField("okCodeField_id")
//Name
_okCodeField("okCodeField_name")
//Index
_okCodeField(5)
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

SAP Add-On
9.0.0

Note@note@
API_password(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_password("password_id")
//Name
_password("password_name")
//Index
_password(5)
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

SAP Add-On
9.0.0

Note@note@
API_picture(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_picture("picture_id")
//Name
_picture("picture_name")
//Index
_picture(5)
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

SAP Add-On
9.0.0

Note@note@
API_popupWindow(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_popupWindow("popupWindow_id")
//Name
_popupWindow("popupWindow_name")
//Index
_popupWindow(5)
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

SAP Add-On
9.0.0

Note@note@
API_radio(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_radio("radio_id")
//Name
_radio("radio_name")
//Index
_radio(5)
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

SAP Add-On
9.0.0

Note@note@
API_sapChart(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_sapChart("sapChart_id")
//Name
_sapChart("sapChart_name")
//Index
_sapChart(5)
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

SAP Add-On
9.0.0

Note@note@
API_scrollbar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_scrollbar("scrollbar_id")
//Name
_scrollbar("scrollbar_name")
//Index
_scrollbar(5)
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

SAP Add-On
9.0.0

Note@note@
API_scrollContainer(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_scrollContainer("scrollContainer_id")
//Name
_scrollContainer("scrollContainer_name")
//Index
_scrollContainer(5)
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

SAP Add-On
9.0.0

Note@note@
API_simpleContainer(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_simpleContainer("simpleContainer_id")
//Name
_simpleContainer("simpleContainer_name")
//Index
_simpleContainer(5)
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

SAP Add-On
9.0.0

Note@note@
API_splitter(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_splitter("splitter_id")
//Name
_splitter("splitter_name")
//Index
_splitter(5)
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

SAP Add-On
9.0.0

Note@note@
API_splitterContainer(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_splitterContainer("splitterContainer_id")
//Name
_splitterContainer("splitterContainer_name")
//Index
_splitterContainer(5)
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

SAP Add-On
9.0.0

Note@note@
API_stage(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_stage("stage_id")
//Name
_stage("stage_name")
//Index
_stage(5)
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

SAP Add-On
9.0.0

Note@note@
API_statusBar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_statusBar("statusBar_id")
//Name
_statusBar("statusBar_name")
//Index
_statusBar(5)
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

SAP Add-On
9.0.0

Note@note@
API_statusPane(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_statusPane("statusPane_id")
//Name
_statusPane("statusPane_name")
//Index
_statusPane(5)
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

SAP Add-On
9.0.0

Note@note@
API_tab(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_tab("tab_id")
//Name
_tab("tab_name")
//Index
_tab(5)
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

SAP Add-On
9.0.0

Note@note@
API_table(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_table("table_id")
//Name
_table("table_name")
//Index
_table(5)
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

SAP Add-On
9.0.0

Note@note@
API_tableCell(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_tableCell("tableCell_id")
//Name
_tableCell("tableCell_name")
//Index
_tableCell(5)
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

SAP Add-On
9.0.0

Note@note@
API_tabStrip(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_tabStrip("tabStrip_id")
//Name
_tabStrip("tabStrip_name")
//Index
_tabStrip(5)
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

SAP Add-On
9.0.0

Note@note@
API_textbox(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_textbox("textbox_id")
//Name
_textbox("textbox_name")
//Index
_textbox(5)
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

SAP Add-On
9.0.0

Note@note@
API_textEdit(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_textEdit("textEdit_id")
//Name
_textEdit("textEdit_name")
//Index
_textEdit(5)
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

SAP Add-On
9.0.0

Note@note@
API_titlebar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_titlebar("titlebar_id")
//Name
_titlebar("titlebar_name")
//Index
_titlebar(5)
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

SAP Add-On
9.0.0

Note@note@
API_toolbar(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_toolbar("toolbar_id")
//Name
_toolbar("toolbar_name")
//Index
_toolbar(5)
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

SAP Add-On
9.0.0

Note@note@
API_toolbarButton(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_toolbarButton("toolbarButton_id")
//Name
_toolbarButton("toolbarButton_name")
//Index
_toolbarButton(5)
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

SAP Add-On
9.0.0

Note@note@
API_toolbarControl(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_toolbarControl("toolbarControl_id")
//Name
_toolbarControl("toolbarControl_name")
//Index
_toolbarControl(5)
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

SAP Add-On
9.0.0

Note@note@
API_tree(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_tree("tree_id")
//Name
_tree("tree_name")
//Index
_tree(5)
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

SAP Add-On
9.0.0

Note@note@
API_treeNode(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_treeNode("treeNode_id")
//Name
_treeNode("treeNode_name")
//Index
_treeNode(5)
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

SAP Add-On
9.0.0

Note@note@
API_treeNodeItem(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_treeNodeItem("treeNodeItem_id")
//Name
_treeNodeItem("treeNodeItem_name")
//Index
_treeNodeItem(5)
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

SAP Add-On
9.0.0

Note@note@
API_userarea(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_userarea("userarea_id")
//Name
_userarea("userarea_name")
//Index
_userarea(5)
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

SAP Add-On
9.0.0

Note@note@
API_window(identifier)
IdentifiersId, Name, Index

Valid Accessors and alternatives:
//Id
_window("window_id")
//Name
_window("window_name")
//Index
_window(5)
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")));