summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipatests/test_webui/ui_driver.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipatests/test_webui/ui_driver.py b/ipatests/test_webui/ui_driver.py
index 8603aa70..1c396b6d 100644
--- a/ipatests/test_webui/ui_driver.py
+++ b/ipatests/test_webui/ui_driver.py
@@ -991,6 +991,8 @@ class UI_driver(object):
self.check_option(key, val, parent)
elif widget_type == 'checkbox':
self.check_option(key, parent=parent)
+ elif widget_type == 'selectbox':
+ self.select('select[name=%s]' % key, val, parent)
elif widget_type == 'combobox':
self.select_combobox(key, val, parent)
elif widget_type == 'add_table_record':