annotate vendor/instaclick/php-webdriver/lib/WebDriver/Frame.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
rev   line source
Chris@0 1 <?php
Chris@0 2 /**
Chris@0 3 * Copyright 2011-2017 Anthon Pang. All Rights Reserved.
Chris@0 4 *
Chris@0 5 * Licensed under the Apache License, Version 2.0 (the "License");
Chris@0 6 * you may not use this file except in compliance with the License.
Chris@0 7 * You may obtain a copy of the License at
Chris@0 8 *
Chris@0 9 * http://www.apache.org/licenses/LICENSE-2.0
Chris@0 10 *
Chris@0 11 * Unless required by applicable law or agreed to in writing, software
Chris@0 12 * distributed under the License is distributed on an "AS IS" BASIS,
Chris@0 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Chris@0 14 * See the License for the specific language governing permissions and
Chris@0 15 * limitations under the License.
Chris@0 16 *
Chris@0 17 * @package WebDriver
Chris@0 18 *
Chris@0 19 * @author Anthon Pang <apang@softwaredevelopment.ca>
Chris@0 20 */
Chris@0 21
Chris@0 22 namespace WebDriver;
Chris@0 23
Chris@0 24 /**
Chris@0 25 * WebDriver\Frame class
Chris@0 26 *
Chris@0 27 * @package WebDriver
Chris@0 28 *
Chris@0 29 * @method void parentt() Change focus to the parent context.
Chris@0 30 */
Chris@0 31 final class Frame extends AbstractWebDriver
Chris@0 32 {
Chris@0 33 /**
Chris@0 34 * {@inheritdoc}
Chris@0 35 */
Chris@0 36 protected function methods()
Chris@0 37 {
Chris@0 38 return array(
Chris@0 39 'parent' => array('POST'),
Chris@0 40 );
Chris@0 41 }
Chris@0 42 }