Ejemplo n.º 1
0
 def setUp(self):
     self.actionwords = Actionwords(self)
     # Given I handle coffee grounds
     self.actionwords.i_handle_coffee_grounds()
     # And I handle water tank
     self.actionwords.i_handle_water_tank()
     # And I handle beans
     self.actionwords.i_handle_beans()
     raise NotImplementedError
Ejemplo n.º 2
0
 def setUp(self):
     self.actionwords = Actionwords(self)
 def setUp(self):
     self.actionwords = Actionwords(self)
     # Given the coffee machine is started
     self.actionwords.the_coffee_machine_is_started()
     # And I handle everything except the grounds
     self.actionwords.i_handle_everything_except_the_grounds()
Ejemplo n.º 4
0
 def setUp(self):
     driver = webdriver.Chrome(
         executable_path="/home/harut/Documents/chromedriver")
     self.actionwords = Actionwords(self, driver)