behave-framework/pytests/test_basic.py

32 lines
924 B
Python
Raw Permalink Normal View History

from browserdriver import BrowserDriver
2020-10-10 22:36:02 +00:00
import pytest
def test_firefox_browser(headless):
bd = BrowserDriver().get("firefox", headless=headless)
bd.get('https://test.io')
assert "QA Testing as a Service | test IO" == bd.title
bd.quit()
def test_chrome_browser(headless):
bd = BrowserDriver().get("chrome", headless=headless)
bd.get('https://test.io')
assert "QA Testing as a Service | test IO" == bd.title
bd.quit()
2020-10-10 22:27:46 +00:00
def test_safari_browser(headless):
bd = BrowserDriver().get("safari", headless=False)
bd.get('https://test.io')
assert "QA Testing as a Service | test IO" == bd.title
bd.quit()
2020-10-14 22:37:21 +00:00
@pytest.mark.skip(reason="Edge has inconsistent implementations across platforms")
2020-10-10 22:27:46 +00:00
def test_edge_browser(headless):
bd = BrowserDriver().get("edge", headless=headless)
bd.get('https://test.io')
assert "QA Testing as a Service | test IO" == bd.title
bd.quit()