FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/test/DeleteWindowTest.php at master · drupalmind/php-webdriver · GitHub
drupalmind
/
php-webdriver
Public
forked from
Element-34/php-webdriver
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
php-webdriver
/
test
/
DeleteWindowTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (20 loc) · 657 Bytes
Breadcrumbs
php-webdriver
/
test
/
DeleteWindowTest.php
Copy path
File metadata and controls
24 lines (20 loc) · 657 Bytes
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
<?php
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriver.php
'
);
class
DeleteWindowTest
extends
PHPUnit_Framework_TestCase {
protected
static
$
driver
;
public
function
setUp
() {
self
::
$
driver
=
new
PHPWebDriver_WebDriver
();
}
/**
* @group delete_window
* @expectedException PHPWebDriver_UnhandledWebDriverError
*/
public
function
testDeleteWindow
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
$
this
->
session
->
open
(
"
https://github.com/element-34/php-webdriver
"
);
$
this
->
session
->
deleteWindow
();
sleep
(
3
);
$
this
->
assertEquals
(
count
(
$
this
->
session
->
window_handles
()),
0
);
}
}
?>
Back
|
FazBrowse Home
|
New Git URL