You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				<?php | 
						|
$I = new TestGuy($scenario); | 
						|
$I->wantTo('ensure that contact works'); | 
						|
$I->amOnPage('?r=site/contact'); | 
						|
$I->see('Contact', 'h1'); | 
						|
 | 
						|
$I->submitForm('#contact-form', []); | 
						|
$I->see('Contact', 'h1'); | 
						|
$I->see('Name cannot be blank'); | 
						|
$I->see('Email cannot be blank'); | 
						|
$I->see('Subject cannot be blank'); | 
						|
$I->see('Body cannot be blank'); | 
						|
$I->see('The verification code is incorrect'); | 
						|
 | 
						|
$I->submitForm('#contact-form', [ | 
						|
	'ContactForm[name]' => 'tester', | 
						|
	'ContactForm[email]' => 'tester.email', | 
						|
	'ContactForm[subject]' => 'test subject', | 
						|
	'ContactForm[body]' => 'test content', | 
						|
	'ContactForm[verifyCode]' => 'testme', | 
						|
]); | 
						|
$I->dontSee('Name cannot be blank', '.help-inline'); | 
						|
$I->see('Email is not a valid email address.'); | 
						|
$I->dontSee('Subject cannot be blank', '.help-inline'); | 
						|
$I->dontSee('Body cannot be blank', '.help-inline'); | 
						|
$I->dontSee('The verification code is incorrect', '.help-inline'); | 
						|
 | 
						|
$I->submitForm('#contact-form', [ | 
						|
	'ContactForm[name]' => 'tester', | 
						|
	'ContactForm[email]' => 'tester@example.com', | 
						|
	'ContactForm[subject]' => 'test subject', | 
						|
	'ContactForm[body]' => 'test content', | 
						|
	'ContactForm[verifyCode]' => 'testme', | 
						|
]); | 
						|
$I->dontSeeElement('#contact-form'); | 
						|
$I->see('Thank you for contacting us. We will respond to you as soon as possible.');
 | 
						|
 |