1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

devel/py-splinter: Browser abstraction for web acceptance testing

Splinter is an open source tool for testing web applications using Python.
It lets you automate browser actions, such as visiting URLs and interacting
with their items.

WWW: http://splinter.cobrateam.info/
This commit is contained in:
William Grzybowski 2013-12-18 19:56:36 +00:00
parent 93d5ac5687
commit c405b09e34
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=336858
4 changed files with 32 additions and 0 deletions

View File

@ -1671,6 +1671,7 @@
SUBDIR += py-selenium
SUBDIR += py-slimmer
SUBDIR += py-slumber
SUBDIR += py-splinter
SUBDIR += py-surl
SUBDIR += py-textile
SUBDIR += py-tgwebservices

24
www/py-splinter/Makefile Normal file
View File

@ -0,0 +1,24 @@
# Created by: William Grzybowski <wg@FreeBSD.org>
# $FreeBSD$
PORTNAME= splinter
PORTVERSION= 0.5.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wg@FreeBSD.org
COMMENT= Browser abstraction for web acceptance testing
LICENSE= BSD3CLAUSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}selenium>=2.33:${PORTSDIR}/www/py-selenium \
${PYTHON_PKGNAMEPREFIX}zope.testbrowser>=4.0.2:${PORTSDIR}/devel/py-zope.testbrowser \
${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \
${PYTHON_PKGNAMEPREFIX}cssselect>0:${PORTSDIR}/www/py-cssselect
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>

2
www/py-splinter/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (splinter-0.5.4.tar.gz) = cd45b67f8ae1c98a69ac840c0c896cff914f65ddf05ea8d048087ce892bb9b03
SIZE (splinter-0.5.4.tar.gz) = 14390

View File

@ -0,0 +1,5 @@
Splinter is an open source tool for testing web applications using Python.
It lets you automate browser actions, such as visiting URLs and interacting
with their items.
WWW: http://splinter.cobrateam.info/