mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 08:41:55 -06:00
webui-ci: fix table widget add
add_table_record call used old selector for add button which caused 3 fails in CI: - ERROR: Test automember rebuild membership feature for hosts - ERROR: Test automember rebuild membership feature for users - ERROR: Basic CRUD: dns related to: https://fedorahosted.org/freeipa/ticket/4258 Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
parent
e995d2b827
commit
a3c51e2383
@ -1326,7 +1326,7 @@ class UI_driver(object):
|
||||
parent = self.get_form()
|
||||
s = self.get_table_selector(name)
|
||||
table = self.find(s, By.CSS_SELECTOR, parent, strict=True)
|
||||
s = "a[name=%s].button" % 'add'
|
||||
s = ".btn[name=%s]" % 'add'
|
||||
btn = self.find(s, By.CSS_SELECTOR, table, strict=True)
|
||||
btn.click()
|
||||
self.wait()
|
||||
|
Loading…
Reference in New Issue
Block a user