1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00

PHP Client for the Selenium Remote Control test tool

Selenium Remote Control (SRC) is a test tool that allows you to write
automated web application UI tests in any programming language against
any HTTP website using any mainstream JavaScript-enabled browser. SRC
provides a Selenium Server, which can automatically start/stop/control
any supported browser. It works by using Selenium Core, a pure-HTML+JS
library that performs automated tasks in JavaScript; the Selenium
Server communicates directly with the browser using AJAX
(XmlHttpRequest).

WWW: http://pear.php.net/package/Testing_Selenium

PR:		ports/117872 (based on)
Submitted by:	Brian A. Seklecki <lavalamp@spiritual-machines.org>
This commit is contained in:
Martin Wilke 2007-12-15 21:49:01 +00:00
parent eec57da399
commit 7cdd6ba49d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=203808
4 changed files with 52 additions and 0 deletions

View File

@ -1775,6 +1775,7 @@
SUBDIR += pear-PhpDocumentor
SUBDIR += pear-Structures_DataGrid
SUBDIR += pear-System_Command
SUBDIR += pear-Testing_Selenium
SUBDIR += pear-Text_Diff
SUBDIR += pear-VFS
SUBDIR += pear-Validate

View File

@ -0,0 +1,35 @@
# Ports collection makefile for: pear-Testing_Selenium
# Date created: 15 December 2007
# Whom: Martin Wilke (miwi@FreeBSD.org)
#
# $FreeBSD$
#
PORTNAME= Testing_Selenium
PORTVERSION= 0.4.1
CATEGORIES= devel pear
MAINTAINER= miwi@FreeBSD.org
COMMENT= PEAR Binding - Once more unto the breach
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
FILES= Selenium/Exception.php \
ChangeLog \
Selenium.php \
README \
TODO
EXAMPLES= example.php
TESTS= html/bug8893.html \
html/bug9119.html \
html/bug9189.html \
AllTests.php \
BugTest.php \
GoogleTest.php \
SeleniumTest.php
_TESTSDIR= tests
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Testing_Selenium-0.4.1.tgz) = 8732b7cde32b5fba8e9fee1fd46fc1bb
SHA256 (PEAR/Testing_Selenium-0.4.1.tgz) = 301431266c431d6b68d626292788a3c829a00ef1e5a14e3aad97bdc5758a0746
SIZE (PEAR/Testing_Selenium-0.4.1.tgz) = 25533

View File

@ -0,0 +1,13 @@
PHP Client for the Selenium Remote Control test tool
Selenium Remote Control (SRC) is a test tool that allows you to write
automated web application UI tests in any programming language against
any HTTP website using any mainstream JavaScript-enabled browser. SRC
provides a Selenium Server, which can automatically start/stop/control
any supported browser. It works by using Selenium Core, a pure-HTML+JS
library that performs automated tasks in JavaScript; the Selenium
Server communicates directly with the browser using AJAX
(XmlHttpRequest).
WWW: http://pear.php.net/package/Testing_Selenium