WebDriverNavigation
class WebDriverNavigation (View source)
An abstraction allowing the driver to access the browser's history and to navigate to a given URL.
Note that they are all blocking functions until the page is loaded by by default. It could be overridden by 'webdriver.load.strategy' in the FirefoxProfile preferences. https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities#firefoxprofile-settings
Properties
| protected | $executor | 
Methods
Move back a single entry in the browser's history, if possible.
Move forward a single entry in the browser's history, if possible.
Refresh the current page.
Navigate to the given URL.
Details
        
                            
    __construct(ExecuteMethod $executor)
        
    
    No description
        
                            WebDriverNavigation
    back()
        
    
    Move back a single entry in the browser's history, if possible.
        
                            WebDriverNavigation
    forward()
        
    
    Move forward a single entry in the browser's history, if possible.
        
                            WebDriverNavigation
    refresh()
        
    
    Refresh the current page.
        
                            WebDriverNavigation
    to(string $url)
        
    
    Navigate to the given URL.