-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
38 lines (30 loc) · 1.3 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import pytest
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.firefox import GeckoDriverManager
from selenium.webdriver.chrome.options import Options
def pytest_addoption(parser):
parser.addoption("--browser", action="store", default="chrome", help="Browser on which you want to run automation tests,"
" valid values are chrome/firefox")
@pytest.fixture(scope="session")
def browser(request):
return request.config.getoption("--browser")
@pytest.fixture(scope="session")
def initialize_browser(request, browser):
"""
Fixture to initialize browser.
"""
driver = None
options = Options()
options.add_argument('--ignore-certificate-errors')
if browser.lower() == "chrome":
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
elif browser.lower() == "firefox":
driver = webdriver.Firefox(service=Service(GeckoDriverManager().install()))
else:
assert False, "Please pass valid browser value (chrome/firefox)."
def function_finalizer():
driver.quit()
request.addfinalizer(function_finalizer)
return driver