single_select¶
SingleSelect(browser, container, searchable=True, allow_new_values=False)
¶
Bases: BaseControl
Entity-Component: Select, ComboBox
A dropdown which can select only one value
Parameters:
Name | Type | Description | Default |
---|---|---|---|
browser |
The selenium webdriver |
required | |
container |
The locator of the container where the control is located in. |
required | |
searchable |
Boolean indicating if the dropdown provides filter or not. |
True
|
|
allow_new_values |
Boolean indicating if the dropdown allows for user-entered custom values excluding a predefined list. |
False
|
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
allow_new_values()
¶
Returns True if the SingleSelect accepts new values, False otherwise
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
336 337 338 339 340 341 |
|
cancel_selected_value()
¶
Cancels the currently selected value in the SingleSelect :return: Bool whether canceling the selected item was successful, else raises an error
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
205 206 207 208 209 210 211 212 213 214 |
|
get_list_count()
¶
Gets the total count of the SingleSelect list :return: Int the count of the options within the Single Select
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
307 308 309 310 311 312 |
|
get_single_value()
¶
Returns:
Type | Description |
---|---|
one value from Single Select |
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
|
get_value()
¶
Gets the selected value :return: The selected value’s text, or returns false if unsuccessful
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
|
is_editable()
¶
Returns True if the SingleSelect is editable, False otherwise
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
list_of_values()
¶
Gets the list of value from the Single Select :return: list of options avaialble within the single select
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
|
search(value, open_dropdown=True)
¶
search with the singleselect input :param value: string value to search :assert Asserts whether the single select is searchable
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
search_get_list(value)
¶
search with the singleselect input and return the list :param value: string value to search :return: a list of values
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
select(value, open_dropdown=True)
¶
Selects the value within the select dropdown :param value: the value to select :param open_dropdown: Whether the dropdown should be opened :return: Bool if successful in selection, else raises an error
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
wait_for_search_list()
¶
Wait for SingleSelect search to populate
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
324 325 326 327 328 329 330 331 332 333 334 |
|
wait_for_values()
¶
Wait for dynamic values to load in SingleSelect
Source code in pytest_splunk_addon_ui_smartx/components/controls/single_select.py
314 315 316 317 318 319 320 321 322 |
|