| 1 | <?php  | 
            ||
| 19 | class ThankYouPage extends SymfonyPage implements ThankYouPageInterface  | 
            ||
| 20 | { | 
            ||
| 21 | /**  | 
            ||
| 22 | * @var array  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $elements = [  | 
            ||
| 25 | 'thank you message' => '#thanks',  | 
            ||
| 26 | ];  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 |      * {@inheritdoc} | 
            ||
| 30 | */  | 
            ||
| 31 | public function hasThankYouMessageFor($name)  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 |      * {@inheritdoc} | 
            ||
| 40 | */  | 
            ||
| 41 | public function waitForResponse($timeout, array $parameters = [])  | 
            ||
| 47 | |||
| 48 | /**  | 
            ||
| 49 | * @return string  | 
            ||
| 50 | */  | 
            ||
| 51 | protected function getRouteName()  | 
            ||
| 55 | }  | 
            ||
| 56 |