FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/test/AlertTest.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
/
AlertTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
179 lines (158 loc) · 5.83 KB
Breadcrumbs
php-webdriver
/
test
/
AlertTest.php
Copy path
File metadata and controls
179 lines (158 loc) · 5.83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php
// Copyright 2012-present Element 34
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriver.php
'
);
require_once
(
'
LocalWebServer.php
'
);
class
AlertTest
extends
PHPUnit_Framework_TestCase {
protected
static
$
driver
;
protected
static
$
pid
;
protected
static
$
port
;
public
static
function
setUpBeforeClass
() {
if
(
function_exists
(
'
pcntl_fork
'
) &&
function_exists
(
'
posix_kill
'
)) {
// get an empty socket
$
socket
=
socket_create
(
AF_INET
,
SOCK_STREAM
,
SOL_TCP
);
socket_set_option
(
$
socket
,
SOL_SOCKET
,
SO_REUSEADDR
,
1
);
socket_bind
(
$
socket
,
'
127.0.0.1
'
,
0
);
socket_getsockname
(
$
socket
,
$
socket_address
,
$
port
);
socket_close
(
$
socket
);
// set it somewhere
self
::
$
port
=
$
port
;
// fork the webserver
self
::
$
pid
=
pcntl_fork
();
if
(
self
::
$
pid
== -
1
) {
return
$
this
->
raiseError
(
'
Could not fork child process.
'
);
}
elseif
(
self
::
$
pid
==
0
) {
$
webserver
= &
new
LocalWebServer
(
'
127.0.0.1
'
,
$
port
);
$
webserver
->
_driver
->
setDebugMode
(
false
);
$
webserver
->
documentRoot
=
dirname
(
__FILE__
) .
'
/../www
'
;
$
webserver
->
start
();
}
else
{
// the parent process does not have to do anything
}
}
}
public
function
setUp
() {
self
::
$
driver
=
new
PHPWebDriver_WebDriver
();
}
public
function
tearDown
() {
$
this
->
session
->
close
();
}
public
static
function
tearDownAfterClass
() {
// kill the server
posix_kill
(
self
::
$
pid
,
SIGKILL
);
}
/**
* @group alert
*/
public
function
testAlertText
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
alert
"
);
$
e
->
click
();
$
a
=
$
this
->
session
->
switch_to_alert
();
$
this
->
assertEquals
(
$
a
->
text
,
"
cheese
"
);
}
/**
* @group alert
*/
public
function
testAlertDismiss
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
alert
"
);
$
e
->
click
();
$
a
=
$
this
->
session
->
switch_to_alert
();
$
a
->
accept
();
// If we can perform any action, we're good to go
assert
(
"
Testing Alerts
"
==
$
this
->
session
->
title
());
}
/**
* @group alert
*/
public
function
testAlertAccept
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
alert
"
);
$
e
->
click
();
$
a
=
$
this
->
session
->
switch_to_alert
();
$
a
->
accept
();
// If we can perform any action, we're good to go
assert
(
"
Testing Alerts
"
==
$
this
->
session
->
title
());
}
/**
* @group alert
*/
public
function
testAlertSendKeys
() {
$
fail
=
null
;
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
alert
"
);
$
e
->
click
();
$
a
=
$
this
->
session
->
switch_to_alert
();
try
{
$
a
->
sendKeys
(
"
cheese
"
);
$
fail
=
"
PHPWebDriver_ElementNotDisplayedWebDriverError should have been thrown
"
;
}
catch
(
Exception
$
e
) {
if
(!
is_a
(
$
e
,
"
PHPWebDriver_ElementNotDisplayedWebDriverError
"
)) {
$
fail
=
"
exception should be PHPWebDriver_ElementNotDisplayedWebDriverError
"
;
}
}
$
a
->
dismiss
();
if
(
$
fail
) {
$
this
->
fail
(
$
fail
);
}
}
/**
* @group alert
* @group prompt
*/
public
function
testPromptAccept
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
prompt
"
);
$
e
->
click
();
$
p
=
$
this
->
session
->
switch_to_alert
();
$
p
->
accept
();
// If we can perform any action, we're good to go
assert
(
"
Testing Alerts
"
==
$
this
->
session
->
title
());
}
/**
* @group alert
* @group prompt
*/
public
function
testPromptDismiss
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
prompt
"
);
$
e
->
click
();
$
p
=
$
this
->
session
->
switch_to_alert
();
$
p
->
dismiss
();
// If we can perform any action, we're good to go
assert
(
"
Testing Alerts
"
==
$
this
->
session
->
title
());
}
/**
* @group alert
* @group prompt
*/
public
function
testPromptSendKeys
() {
$
this
->
session
=
self
::
$
driver
->
session
();
$
this
->
session
->
open
(
"
http://127.0.0.1:
"
.
self
::
$
port
.
"
/alerts.html
"
);
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
prompt
"
);
$
e
->
click
();
$
p
=
$
this
->
session
->
switch_to_alert
();
$
p
->
sendKeys
(
"
cheese
"
);
$
p
->
accept
();
$
e
=
$
this
->
session
->
element
(
"
id
"
,
"
text
"
);
assert
(
"
cheese
"
==
$
e
->
text
());
}
}
Back
|
FazBrowse Home
|
New Git URL