diff --git a/test/helpers/installer.py b/test/helpers/installer.py index 87e865bdc..c0b46b4b6 100644 --- a/test/helpers/installer.py +++ b/test/helpers/installer.py @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program; If not, see . from collections import UserDict -from time import sleep import steps from step_logger import log_step @@ -131,11 +130,6 @@ def next(self, should_fail=False, next_page=""): while next_page in self.steps.hidden_steps: next_page = self.steps._steps_jump[next_page][0] - # Wait for a disk to be pre-selected before clicking 'Next'. - # FIXME: Find a better way. - if current_page == self.steps.INSTALLATION_METHOD: - sleep(2) - self.browser.click("#installation-next-btn") expected_page = current_page if should_fail else next_page self.wait_current_page(expected_page)