@user1
Feature: As a user, I can operate with 2 numbers     
 	As a user, I open a new Case record, enter required data so that I can save and close it.
      
	Background:
	As a user, I access the Calculator
		Given that the Calculator is turned on
		And the mode is to advanced

	@UI @core @ID1
	Scenario Outline: First Cucumber Test
	As a user, I can calculate the sum of 2 numbers
	Given I have entered <input_1> into the Calculator
		And I have entered <input_2> into the Calculator
		When I press <button>
		Then the result should be <output> on the screen
	
		  Examples:
		    | input_1 | input_2 | button | output |
		    | 20      | 30      | add    | 50     |
		    | 2       | 5       | add    | 7      |
		    | 0       | 40      | add    | 40     | 
		    | 4       | 50      | add    | 54     |
			
	@UI @core @ID2
	Scenario: Second Cucumber Test
	As a user, I erase all data from the Calculator
	Given I have entered data into the Calculator
		When I press Clear button
		Then the results are cleared from the screen