rafutek

Results 9 comments of rafutek

For example : `pytest --output test_dir tests/admin/test_group_management.py` And sorry, I don't have a repo to share.. Pytest is up to date also (7.1.2)

I also modified browser context with ``` @pytest.fixture(scope="session") def browser_context_args(browser_context_args): return { **browser_context_args, "ignore_https_errors": True } ``` Removing this fixtures enables --output option, indeed. Thank you !

I do not understand why --output option is not compatible with a modified browser_context_args fixture. Is it possible to make them compatible ?

Finally I just used pytest --junit-xml instead of --output, it works like a charm

Yes, sorry, --output and --junit-xml are completely different things. Is there any update on this issue ? Modifying context and outputing artifacts should be possible no ?

Hello, Is there any updates here ? Having the issue on v0.7.1. I needed to set the socket parameter as explained above to make it work in session mode. Thank...

Hello, I have the same issue, I moved le .fxml file into the same package but still say "Location is not set". This is my project architecture: ![image](https://user-images.githubusercontent.com/47695845/59905437-8561bb00-9406-11e9-8331-bb5b0636bb7d.png) I also...

Same issue here, the request is sent to Appium server on Windows machine, but when trying to `find_element` there is no retry, a NoSuchElementError is raised. Am I missing something...