WebDriverTargetLocator
interface WebDriverTargetLocator (View source)
Used to locate a given frame or window.
Constants
| WINDOW_TYPE_WINDOW | 
 | 
| WINDOW_TYPE_TAB | 
 | 
Methods
Set the current browsing context to the current top-level browsing context.
Switch to the currently active modal dialog for this particular driver instance.
Switches to the element that currently has focus within the document currently "switched to", or the body element if this cannot be detected.
Details
        
                            WebDriver
    defaultContent()
        
    
    Set the current browsing context to the current top-level browsing context.
This is the same as calling RemoteTargetLocator::frame(null);
        
                            WebDriver
    frame(WebDriverElement|null|int|string $frame)
        
    
    Switch to the iframe by its id or name.
        
                            WebDriver
    window(string $handle)
        
    
    Switch the focus to another window by its handle.
        
                            WebDriverAlert
    alert()
        
    
    Switch to the currently active modal dialog for this particular driver instance.
        
                            WebDriverElement
    activeElement()
        
    
    Switches to the element that currently has focus within the document currently "switched to", or the body element if this cannot be detected.