367cbe6be5
2.45.0 (2014-02-28) =================== Firefox: * Native events in Firefox relied on an API that Mozilla no longer provides. As such, fall back to synthesized events on recent Firefox versions. Ruby changes: * Allow switching windows when current window is closed (thanks Titus Fortner). * Add :javascript_enabled to Android capabilities. 2.44.0 (2014-10-05) =================== No Ruby changes in this release. Firefox: * Native event support for Firefox 24, 31, 32 and 33 2.43.0 (2014-09-09) =================== * Make sure UnhandledAlertErrors includes the alert text if provided by the driver. * Firefox - Make sure the browser process is properly killed if silent startup hangs (#7392) - native events support for Firefox 24, 31 and 32 * Loosen websocket dependency to ~> 1.0 * Add support for `switch_to.parent_frame` (thanks abotalov) * Fix download location for Selenium::Server.{latest,get} (#7049 - thanks marekj)
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2015/03/13 17:59:44 taca Exp $
|
|
|
|
DISTNAME= selenium-webdriver-2.45.0
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= ruby www
|
|
|
|
MAINTAINER= rodent@NetBSD.org
|
|
HOMEPAGE= http://selenium.googlecode.com/
|
|
COMMENT= Tool for writing automated tests of websites
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-childprocess>=0.5.0:../../sysutils/ruby-childprocess
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-multi_json>=1.0<2.0:../../textproc/ruby-multi_json
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-zip>=1.0<2.0:../../archivers/ruby-zip
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-websocket>=1.0<2:../../www/ruby-websocket
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
OVERRIDE_GEMSPEC+= \
|
|
:files lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so= \
|
|
lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so=
|
|
|
|
#
|
|
# XXX: Remove this unportable garbage. Breaks on non-Linux targets.
|
|
pre-configure:
|
|
${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.${RUBY_DLEXT}
|
|
${RM} ${WRKSRC}/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.${RUBY_DLEXT}
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|