FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/test/TimeoutTest.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
/
TimeoutTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (43 loc) · 1.4 KB
Breadcrumbs
php-webdriver
/
test
/
TimeoutTest.php
Copy path
File metadata and controls
55 lines (43 loc) · 1.4 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
<?php
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriver.php
'
);
class
TimeoutTest
extends
PHPUnit_Framework_TestCase {
protected
static
$
session
;
public
static
function
setUpBeforeClass
() {
$
driver
=
new
PHPWebDriver_WebDriver
();
self
::
$
session
=
$
driver
->
session
();
// firefox
}
public
static
function
tearDownAfterClass
() {
self
::
$
session
->
close
();
}
public
function
testImplicitTimeout
() {
self
::
$
session
->
setTimeouts
(
array
(
'
type
'
=>
'
implicit
'
,
'
ms
'
=>
5
));
}
public
function
testImplicitTimeoutWrapper
() {
self
::
$
session
->
implicitlyWait
(
5
);
}
public
function
testScriptTimeout
() {
self
::
$
session
->
setTimeouts
(
array
(
'
type
'
=>
'
script
'
,
'
ms
'
=>
6
));
}
public
function
testScriptTimeoutWrapper
() {
self
::
$
session
->
setScriptTimeout
(
6
);
}
public
function
testPageLoadTimeout
() {
self
::
$
session
->
setTimeouts
(
array
(
'
type
'
=>
'
page load
'
,
'
ms
'
=>
7
));
}
public
function
testPageLoadTimeoutWrapper
() {
self
::
$
session
->
setPageLoadTimeout
(
7
);
}
/**
* @expectedException PHPWebDriver_UnhandledWebDriverError
*/
public
function
testMakeBelieveTimeout
() {
self
::
$
session
->
setTimeouts
(
array
(
'
type
'
=>
'
make believe
'
,
'
ms
'
=>
8
));
}
/**
* @expectedException PHPWebDriver_UnhandledWebDriverError
*/
public
function
testMakeNullType
() {
self
::
$
session
->
setTimeouts
(
array
(
'
type
'
=>
null
,
'
ms
'
=>
8
));
}
}
?>
Back
|
FazBrowse Home
|
New Git URL