diff --git a/ida_selenium.py b/ida_selenium.py index 60aa305ef29e2df95fbf8b4fd579686721be3073..b39dc4bfe335cbefbc0d3d9df44084523df38a94 100644 --- a/ida_selenium.py +++ b/ida_selenium.py @@ -446,12 +446,12 @@ with open(sys.argv[1], encoding="utf-8") as pages_to_test: # # empty object to follow the last comma and a square bracket to close the array # f.write("{}]") - print("Seconds taken for page: " + str( (time.time() - page_start_time) ) ) + print("Seconds taken for page: " + str( round((time.time() - page_start_time)) ) ) print("\033[96m \n-- TEST END --\n\033[00m") # how long the whole thing took, sleeps included -print("Minutes taken for test: " + str( (time.time() - starttime)/60 ) ) +print("Minutes taken for test: " + str( round((time.time() - starttime)/60) ) ) tab.stop() driver.quit()