Code Duplication    Length = 7-7 lines in 4 locations

module/Behat/src/SummaryFormContext.php 4 locations

@@ 83-89 (lines=7) @@
80
		}
81
	}
82
	
83
	public function iSaveOrganizationName()
84
	{
85
		$locator = '#nameForm-buttons-submit';
86
		$this->coreContext->scrollIntoView($locator);
87
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
88
		$element->click();
89
	}
90
	
91
	/**
92
	 * Saving organization workflow
@@ 101-107 (lines=7) @@
98
		$element->click();
99
	}
100
	
101
	public function iSaveOrganizationLocation()
102
	{
103
		$locator = '#locationForm-buttons-submit';
104
		$this->coreContext->scrollIntoView($locator);
105
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
106
		$element->click();
107
	}
108
	
109
	
110
	public function iSaveJobClassification()
@@ 110-116 (lines=7) @@
107
	}
108
	
109
	
110
	public function iSaveJobClassification()
111
	{
112
		$locator = '#general-classifications-buttons-submit';
113
		$this->coreContext->scrollIntoView($locator);
114
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
115
		$element->click();
116
	}
117
	
118
	public function iSaveCustomerNote()
119
	{
@@ 118-124 (lines=7) @@
115
		$element->click();
116
	}
117
	
118
	public function iSaveCustomerNote()
119
	{
120
		$locator = '#general-customerNote-buttons-submit';
121
		$this->coreContext->scrollIntoView('#sf-general-customerNote');
122
		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
123
		$element->click();
124
	}
125
	
126
}