FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/test/ExtraOptsTest.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
/
ExtraOptsTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
73 lines (62 loc) · 2.23 KB
Breadcrumbs
php-webdriver
/
test
/
ExtraOptsTest.php
Copy path
File metadata and controls
73 lines (62 loc) · 2.23 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
<?php
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriver.php
'
);
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriverActionChains.php
'
);
class
ExtraArgsTest
extends
PHPUnit_Framework_TestCase {
protected
static
$
driver
;
public
function
setUp
() {
self
::
$
driver
=
new
PHPWebDriver_WebDriver
();
}
public
function
tearDown
() {
$
this
->
session
->
close
();
}
public
function
testNoArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
}
public
function
testWithArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
(
'
firefox
'
,
array
(),
array
(
CURLOPT_VERBOSE
=>
true
));
// firefox
}
/**
* @group curl_opts
* @group actionchains
*/
public
function
testActionChangeWithOutArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
$
this
->
session
->
open
(
"
https://github.com/element-34/php-webdriver
"
);
$
ac
=
new
\
PHPWebDriver_WebDriverActionChains
(
$
this
->
session
);
$
ac
->
moveToElement
(
$
this
->
session
->
element
(
"
css selector
"
,
"
.watch-button a.minibutton
"
));
$
ac
->
perform
();
sleep
(
4
);
}
/**
* @group curl_opts
* @group actionchains
*/
public
function
testActionChangeWithArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
$
this
->
session
->
open
(
"
https://github.com/element-34/php-webdriver
"
);
$
ac
=
new
\
PHPWebDriver_WebDriverActionChains
(
$
this
->
session
);
$
ac
->
moveToElement
(
$
this
->
session
->
element
(
"
css selector
"
,
"
.watch-button a.minibutton
"
),
array
(
CURLOPT_VERBOSE
=>
true
));
$
ac
->
perform
();
sleep
(
4
);
}
/**
* @group curl_opts
* @group element
*/
public
function
testElementWithArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
$
this
->
session
->
open
(
"
https://github.com/element-34/php-webdriver
"
);
$
e
=
$
this
->
session
->
element
(
"
css selector
"
,
"
.watch-button a.minibutton
"
,
array
(
CURLOPT_VERBOSE
=>
true
));
}
/**
* @group curl_opts
* @group elements
* @group new
*/
public
function
testElementsWithArgs
() {
$
this
->
session
=
self
::
$
driver
->
session
();
// firefox
$
this
->
session
->
open
(
"
https://github.com/element-34/php-webdriver
"
);
$
e
=
$
this
->
session
->
elements
(
"
css selector
"
,
"
.watch-button
"
,
array
(
CURLOPT_VERBOSE
=>
true
));
}
}
?>
Back
|
FazBrowse Home
|
New Git URL