15 lines
465 B
Python
15 lines
465 B
Python
"""Testing the @pytest.mark.xfail marker.
|
|
https://docs.pytest.org/en/latest/skipping.html
|
|
(The test is expected to fail, but don't fail the entire build for it.)"""
|
|
import pytest
|
|
from seleniumbase import BaseCase
|
|
BaseCase.main(__name__, __file__)
|
|
|
|
|
|
class XFailTests(BaseCase):
|
|
@pytest.mark.xfail
|
|
def test_xfail(self):
|
|
self.open("https://xkcd.com/376/")
|
|
self.sleep(1) # Time to read the comic
|
|
self.fail("There is a known bug here!")
|