12 lines
312 B
Python
12 lines
312 B
Python
|
from selenium.webdriver.common.by import By
|
||
|
import time
|
||
|
|
||
|
|
||
|
def test_reservation(login):
|
||
|
home_page = login
|
||
|
home_page.open_session()
|
||
|
film_name = home_page.open_film()
|
||
|
home_page.click_buy()
|
||
|
home_page.click_continue()
|
||
|
home_page.make_payment()
|
||
|
assert home_page.check_payment_shows() == True
|