FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/test/ProfileTest.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
/
ProfileTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (15 loc) · 573 Bytes
Breadcrumbs
php-webdriver
/
test
/
ProfileTest.php
Copy path
File metadata and controls
16 lines (15 loc) · 573 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
<?php
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriver.php
'
);
require_once
(
dirname
(
__FILE__
) .
'
/../PHPWebDriver/WebDriverFirefoxProfile.php
'
);
class
ProfileTest
extends
PHPUnit_Framework_TestCase {
/**
* @group profile
*/
public
function
testProfileExists
() {
$
driver
=
new
PHPWebDriver_WebDriver
();
$
profile
=
new
PHPWebDriver_WebDriverFirefoxProfile
(
dirname
(
__FILE__
) .
'
/support/profiles/red
'
);
// var_dump($profile);
$
session
=
$
driver
->
session
(
'
firefox
'
,
array
(),
array
(),
$
browser_profile
=
$
profile
);
$
session
->
close
();
}
}
Back
|
FazBrowse Home
|
New Git URL