!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\copia nuevo\php\pear\phpwebdriver\   drwxrwxrwx
Free 8.01 GB of 239.26 GB (3.35%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     CWebDriverTestCase.php (5.53 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
  Copyright 2011 3e software house & interactive agency

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 */

/**
 *  Base class for functional tests using webdriver.
 *  It provides interface like classic selenium test class.
 *  @author kolec
 */
class CWebDriverTestCase extends PHPUnit_Framework_TestCase {

    public 
$webdriver;
    public 
$baseUrl;
    protected 
$waiting_time 0.5;
    protected 
$max_waiting_time 4;

    public function 
__call$name$arguments ) {
        if( 
method_exists$this->webdriver$name ) ) {
            return 
call_user_func_array( array( $this->webdriver$name ), $arguments );
        }
    }

    protected function 
setUp$host="localhost"$port="4444"$browser="firefox" ) {
        
parent::setUp();
        
$this->webdriver = new WebDriver$host$port );
        
$this->webdriver->connect$browser );
    }

    protected function 
tearDown() {
        
$this->webdriver->close();
    }
    
    public function 
refresh(){
        
$this->webdriver->refresh();
    }

    public function 
back(){
        
$this->webdriver->back();
    }

    public function 
forward(){
        
$this->webdriver->forward();
    }
    
    public function 
focusFrame($frameId){
        
$this->webdriver->focusFrame($frameId);
    }

    public function 
setBrowserUrl$url ) {
        
$this->baseUrl $url;
    }

    public function 
open$url$check_id '' ) {
        
$urlToOpen $this->baseUrl $url;

        
$this->webdriver->get$urlToOpen );
        if( !empty( 
$check_id ) )
            return 
$this->getElementLocatorStrategy::id$check_id ); else
            
usleep500 1000 );
    }

    public function 
getBodyText() {
        
$html $this->webdriver->getPageSource();
        
$body preg_replace"/.*<body[^>]*>|<\/body>.*/si"""$html );
        return 
$body;
    }

    public function 
isTextPresent$text ) {
        
$found false;
        
$i 0;
        do {
            
$html $this->webdriver->getPageSource();
            if( 
is_string$html ) ) {
                
$found = !(strpos$html$text ) === false);
            }
            if( !
$found ) {
                
sleep$this->waiting_time );
                
$i += $this->waiting_time;
            }
        } while( !
$found && $i <= $this->max_waiting_time );
        return 
$found;
    }

    public function 
getAttribute$xpath ) {
        
$body $this->getBodyText();
        
$xml = new SimpleXMLElement$body );
        
$nodes $xml->xpath"$xpath);
        return 
$nodes[0][0];
    }

    public function 
type$element_name$textToType ) {
        
$element $this->getElementLocatorStrategy::id$element_name );
        if( isset( 
$element ) ) {
            
///usleep(100*1000);
            
$element->sendKeys( array( $textToType ) );
            
//usleep(500*1000);
        
}
    }

    public function 
clear$element_name ) {
        
$element $this->getElementLocatorStrategy::id$element_name );
        if( 
$element ) {
            
$element->clear();
        }
    }

    public function 
submit$element_name ) {
        
$element $this->getElementLocatorStrategy::id$element_name );
        if( isset( 
$element ) ) {
            
$element->submit();
            
usleep500 1000 );
        }
    }

    public function 
click$element_name ) {
        
$element $this->getElementLocatorStrategy::id$element_name );
        if( isset( 
$element ) ) {
            
$element->click();
            
usleep500 1000 );
        }
    }

    public function 
close() {
        
$this->webdriver->close();
    }

    
/**
        select item (option) in combobox
        @param $select_id   id of SELECT element
        @param @option_text option text to select
    */
    
public function select$select_id$option_text ) {
        
$element $this->getElementLocatorStrategy::id$select_id );
        
$option $element->findOptionElementByText$option_text );
        
$option->click();
    }

    public function 
getElementByIdOrName$element_name ) {
        try {
            
$element $this->webdriver->findElementByLocatorStrategy::id$element_name );
        } catch( 
NoSuchElementException $ex ) {
            
$element $this->webdriver->findElementByLocatorStrategy::name$element_name );
        }
        return 
$element;
    }

    public function 
getElement$strategy$name ) {
        
$i 0;
        do {
            try {
                
$element $this->webdriver->findElementBy$strategy$name );
            } catch( 
NoSuchElementException $e ) {
                
print_r"\nWaiting for \"" $name "\" element to appear...\n" );
                
sleep$this->waiting_time );
                
$i += $this->waiting_time;
            }
        } while( !isset( 
$element ) && $i <= $this->max_waiting_time );
        if( !isset( 
$element ) )
            
$this->fail"Element has not appeared after " $this->max_waiting_time " seconds." );
        return 
$element;
    }

}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--