forked from mrlan/EnglishPal
24 lines
465 B
Python
24 lines
465 B
Python
import pytest
|
|
from selenium import webdriver
|
|
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
|
|
|
@pytest.fixture
|
|
def URL():
|
|
return 'http://127.0.0.1:5000' # URL of the program
|
|
|
|
|
|
@pytest.fixture
|
|
def driver():
|
|
my_driver = webdriver.Edge() # uncomment this line if you wish to run the test on your laptop
|
|
return my_driver
|
|
|
|
|
|
@pytest.fixture
|
|
def UNAME():
|
|
return 'lanhui'
|
|
|
|
|
|
@pytest.fixture
|
|
def PASSWORD():
|
|
return 'l0ve1t'
|