O
Size: a a a
O
G
EB
chrome_options.addArgument("--proxy-server=localhost:30001")
.G
EB
G
EB
G
AA
RM
EB
EB
RM
SelenideElement element = $x("//div[@id='notification_1']").shouldBe(Condition.visible);ошибка - element not found
М
$("#notification")
EE
EE
EE
EE
AA
def pytest_generate_tests(metafunc):
PARAMS = ['param1', 'param2', 'param3', 'param4']
XFAIL = dict(param2='some bug', param4='another bug')
pytest_params = map(lambda x: pytest.param(x) if x not in XFAIL.keys()
else pytest.param(
x, marks=pytest.mark.xfail(reason=XFAIL.get(x))),
PARAMS)
metafunc.parametrize('somefixture', pytest_params)
EK