Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author[Aron Schueler] <aron.schueler@dass-it.de>2018-03-02 15:45:51 +0300
committer[Aron Schueler] <aron.schueler@dass-it.de>2018-03-02 15:45:51 +0300
commite22d3237103421690f26ba318741a24212d57fc2 (patch)
tree469dffdead2e837bb7189f2155c11c05dda3d27d
parent6c0a82e23bffc22b2c2004a6130d00799bb58b57 (diff)
Modify comments as requested
-rwxr-xr-xtests/selenium/webui-selenium-test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/selenium/webui-selenium-test.py b/tests/selenium/webui-selenium-test.py
index cbba06e..0d0f4dc 100755
--- a/tests/selenium/webui-selenium-test.py
+++ b/tests/selenium/webui-selenium-test.py
@@ -163,6 +163,7 @@ class WebuiSeleniumTest(unittest.TestCase):
Select(driver.find_element_by_id('job')).select_by_visible_text('backup-%s' % self.client)
Select(driver.find_element_by_id('client')).select_by_visible_text(self.client)
Select(driver.find_element_by_id('level')).select_by_visible_text('Incremental')
+ # Clears the priority field and enters 5.
driver.find_element_by_id('priority').clear()
driver.find_element_by_id('priority').send_keys('5')
@@ -198,7 +199,7 @@ class WebuiSeleniumTest(unittest.TestCase):
self.wait_and_click(By.LINK_TEXT, self.client)
# Select first backup in list
self.wait_and_click(By.XPATH, '//tr[@data-index="0"]/td[1]/a')
- # Press on repeat button
+ # Press on rerun button
self.wait_and_click(By.CSS_SELECTOR, "span.glyphicon.glyphicon-repeat")
self.wait_and_click(By.ID, "menu-topnavbar-dashboard", By.XPATH, "//div[@id='modal-002']/div/div/div[3]/button")
self.logout()