Add feature test framework, using selenium and chromedriver for UI testing.

Written by both George and Atira at Pivotal.
This commit is contained in:
Atira Odhner
2017-02-22 12:41:28 +00:00
committed by Dave Page
parent 89137f57b2
commit fe1aec5de0
12 changed files with 357 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ class TestsGeneratorRegistry(ABCMeta):
# Register this type of module, based on the module name
# Avoid registering the BaseDriver itself
if name != 'BaseTestGenerator':
if name != 'BaseTestGenerator' and name != 'BaseFeatureTest':
TestsGeneratorRegistry.registry[d['__module__']] = cls
ABCMeta.__init__(cls, name, bases, d)