From c4abe3a2d9741be55ee37f2d8857c4110d32f113 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 5 Nov 2013 19:21:57 +0100 Subject: Replace icons with the ones from Font Awesome https://fedorahosted.org/freeipa/ticket/3904 --- ipatests/test_webui/ui_driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipatests') diff --git a/ipatests/test_webui/ui_driver.py b/ipatests/test_webui/ui_driver.py index 8ffb1e9b..d0a61050 100644 --- a/ipatests/test_webui/ui_driver.py +++ b/ipatests/test_webui/ui_driver.py @@ -742,12 +742,12 @@ class UI_driver(object): parent = self.get_form() s = "[name='%s'].combobox-widget" % name cb = self.find(s, By.CSS_SELECTOR, parent, strict=True) - open_btn = self.find('a[name=open] span', By.CSS_SELECTOR, cb, strict=True) + open_btn = self.find('a[name=open] i', By.CSS_SELECTOR, cb, strict=True) open_btn.click() self.wait() self.wait_for_request() - search_btn = self.find('a[name=search] span', By.CSS_SELECTOR, cb, strict=True) + search_btn = self.find('a[name=search] i', By.CSS_SELECTOR, cb, strict=True) opt_s = "select[name=list] option[value='%s']" % value option = self.find(opt_s, By.CSS_SELECTOR, cb) if not option: -- cgit