class XCUIElement

Public Class Methods

types() click to toggle source
# File lib/skeleton/languages.rb, line 75
def self.types
  return {
      Other: "otherElements",
      Group: "groups",
      Window: "windows",
      Sheet: "sheets",
      Drawer: "drawers",
      Alert: "alerts",
      Dialog: "dialogs",
      Button: "buttons",
      RadioButton: "radioButtons",
      RadioGroup: "radioGroups",
      CheckBox: "checkBoxes",
      DisclosureTriangle: "disclosureTriangles",
      PopUpButton: "popUpButtons",
      ComboBox: "comboBoxes",
      MenuButton: "menuButtons",
      ToolbarButton: "toolbarButtons",
      Popover: "popovers",
      Keyboard: "keyboards",
      Key: "keys",
      NavigationBar: "navigationBars",
      TabBar: "tabBars",
      TabGroup: "tabGroups",
      Toolbar: "toolbars",
      StatusBar: "statusBars",
      Table: "tables",
      TableRow: "tableRows",
      TableColumn: "tableColumns",
      Outline: "outlines",
      OutlineRow: "outlineRows",
      Browser: "browsers",
      CollectionView: "collectionViews",
      Slider: "sliders",
      PageIndicator: "pageIndicators",
      ProgressIndicator: "progressIndicators",
      ActivityIndicator: "activityIndicators",
      SegmentedControl: "segmentedControls",
      Picker: "pickers",
      PickerWheel: "pickerWheels",
      Switch: "switches",
      Toggle: "toggles",
      Link: "links",
      Image: "images",
      Icon: "icons",
      SearchField: "searchFields",
      ScrollView: "scrollViews",
      ScrollBar: "scrollBars",
      StaticText: "staticTexts",
      TextField: "textFields",
      SecureTextField: "secureTextFields",
      DatePicker: "datePickers",
      TextView: "textViews",
      Menu: "menus",
      MenuItem: "menuItems",
      MenuBar: "menuBars",
      MenuBarItem: "menuBarItems",
      Map: "maps",
      WebView: "webViews",
      IncrementArrow: "incrementArrows",
      DecrementArrow: "decrementArrows",
      Timeline: "timelines",
      RatingIndicator: "ratingIndicators",
      ValueIndicator: "valueIndicators",
      SplitGroup: "splitGroups",
      Splitter: "splitters",
      RelevanceIndicator: "relevanceIndicators",
      ColorWell: "colorWells",
      HelpTag: "helpTags",
      Matte: "mattes",
      DockItem: "dockItems",
      Ruler: "rulers",
      RulerMarker: "rulerMarkers",
      Grid: "grids",
      LevelIndicator: "levelIndicators",
      Cell: "cells",
      LayoutArea: "layoutAreas",
      LayoutItem: "layoutItems",
      Handle: "handles",
      Stepper: "steppers",
      Tab: "tabs",
      TouchBar: "touchBars",
      StatusItem: "statusItems"
  }
end