summaryrefslogtreecommitdiffstats
path: root/ipatests
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-11-05 19:21:57 +0100
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:03 +0100
commitc4abe3a2d9741be55ee37f2d8857c4110d32f113 (patch)
tree8866ec4d5e06bca139176342e0c2bbff98c15ea4 /ipatests
parent4bc1942f53bad0168f0a41d5783f038cf704873d (diff)
downloadfreeipa.git-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.gz
freeipa.git-c4abe3a2d9741be55ee37f2d8857c4110d32f113.tar.xz
freeipa.git-c4abe3a2d9741be55ee37f2d8857c4110d32f113.zip
Replace icons with the ones from Font Awesome
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'ipatests')
-rw-r--r--ipatests/test_webui/ui_driver.py4
1 files changed, 2 insertions, 2 deletions
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: