FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/lib/WebDriverTargetLocator.php at main · php-webdriver/php-webdriver · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
php-webdriver
/
php-webdriver
Public
Notifications
You must be signed in to change notification settings
Fork
842
Star
5.2k
Code
Issues
21
Pull requests
9
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
php-webdriver
/
lib
/
WebDriverTargetLocator.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
69 lines (60 loc) · 2.05 KB
Breadcrumbs
php-webdriver
/
lib
/
WebDriverTargetLocator.php
Copy path
File metadata and controls
69 lines (60 loc) · 2.05 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace
Facebook
\
WebDriver
;
/**
* Used to locate a given frame or window.
*/
interface
WebDriverTargetLocator
{
/** @var string */
public
const
WINDOW_TYPE_WINDOW
=
'
window
'
;
/** @var string */
public
const
WINDOW_TYPE_TAB
=
'
tab
'
;
/**
* Set the current browsing context to the current top-level browsing context.
* This is the same as calling `RemoteTargetLocator::frame(null);`
*
* @return WebDriver The driver focused on the top window or the first frame.
*/
public
function
defaultContent
();
/**
* Switch to the iframe by its id or name.
*
* @param WebDriverElement|null|int|string $frame The WebDriverElement, the id or the name of the frame.
* When null, switch to the current top-level browsing context When int, switch to the WindowProxy identified
* by the value. When an Element, switch to that Element.
*
* @throws \InvalidArgumentException
* @return WebDriver The driver focused on the given frame.
*/
public
function
frame
(
$
frame
);
// TODO: Add in next major release (BC)
///**
// * Switch to the parent iframe.
// *
// * @return WebDriver This driver focused on the parent frame
// */
//public function parent();
/**
* Switch the focus to another window by its handle.
*
* @param string $handle The handle of the window to be focused on.
* @return WebDriver The driver focused on the given window.
* @see WebDriver::getWindowHandles
*/
public
function
window
(
$
handle
);
// TODO: Add in next major release (BC)
//public function newWindow($windowType = self::WINDOW_TYPE_TAB);
/**
* Switch to the currently active modal dialog for this particular driver instance.
*
* @return WebDriverAlert
*/
public
function
alert
();
/**
* Switches to the element that currently has focus within the document currently "switched to",
* or the body element if this cannot be detected.
*
* @return WebDriverElement
*/
public
function
activeElement
();
}
Back
|
FazBrowse Home
|
New Git URL