Skip to content

Commit

Permalink
Merge pull request #96 from browserium/develop
Browse files Browse the repository at this point in the history
browserium/generic_functions/browser_controller.py
  • Loading branch information
Corefinder89 authored Jan 6, 2019
2 parents fb3392e + 7e08969 commit e09bc67
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ python:
before_install:
sudo apt-get update
before_script:
cd TestFunction/UnitTest/
cd TestFunction/UnitTest/
script:
python execute.py
6 changes: 5 additions & 1 deletion browserium/generic_functions/browser_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,8 @@ def apply_fluent_wait(self, driver, fluent_wait_time):
]
)

return wait
return wait

@classmethod
def tear_browser(self, driver):
driver.quit()
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ pylint==1.9.2
pytest==3.8.1
twine==1.11.0
virtualenv==16.0.0
PyUnitReport
wget
requests
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@
author_email = 'soumyajit.basu62@gmail.com',
classifiers = [
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License'
'Programming Language :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing Utilities'
],
install_requires = [
'requests',
Expand Down

0 comments on commit e09bc67

Please sign in to comment.