From 34e13dd348d4e8b4833d341ce2a81bbc115880b1 Mon Sep 17 00:00:00 2001 From: Axel Date: Tue, 24 May 2016 11:17:20 +0200 Subject: [PATCH] Update install_console.py We now click on the "remove installer file" button, and leave the console ready for CI tests --- tests/install_console.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/install_console.py b/tests/install_console.py index f186605c84..436aed3f41 100755 --- a/tests/install_console.py +++ b/tests/install_console.py @@ -29,6 +29,7 @@ browser.implicitly_wait(300) # The installation is going to take a long time. browser.find_element_by_xpath("//*[@id='step5']/img").click() browser.implicitly_wait(5) assert("Installation complete" in browser.page_source) +browser.find_element_by_name("rn_file").click() # Clean-up browser.quit()