23 lines
302 B
Python
23 lines
302 B
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
|
|
"""
|
|
@author: CNWei
|
|
@Software: PyCharm
|
|
@contact: t6i888@163.com
|
|
@file: conftest
|
|
@date: 2025/4/5 09:28
|
|
@desc:
|
|
"""
|
|
import pytest
|
|
from selenium.webdriver import Chrome,Edge
|
|
|
|
|
|
@pytest.fixture()
|
|
def driver():
|
|
_driver = Edge()
|
|
yield _driver
|
|
_driver.quit()
|
|
|
|
|