Tag: pytest
-
Using pytest fixtures in parametrized tests
Currently i'm working on a project that is supposed to consume all AWS Cloudwatch logs and send them to Datadog. But before sending them to Datadog i need to make series of manipulations with this logs(formatting, sensitive information obfuscating and other nice things). Since Datadog already has serverless forwarder…
-
Opening local version of Allure report with Chrome
Recently I was trying to integrate Allure report with some Webdriver tests I was writing with py.test. I did everything like it was said in the documentation : Install allure cli with brew install allure Add pytest-allure-adaptor==1.7.7 dependency to requirements.txt Add steps annotations to Page Object…