Reed Xia
Reed Xia
Great code! Will you upload it to pip?
Hi, I'm using `conftest.py` and parametrized tests, see my `conftest.py` ``` def pytest_generate_tests(metafunc): idlist = [] argvalues = [] for scenario in metafunc.cls.scenarios: idlist.append(scenario[0]) items = scenario[1].items() argnames = [x[0]...
Hi, I find that in Windows 10(I didn't try other OS), the VideoRecord is not capturing enough frames, I added some debug code and found that, looks `Thread.sleep(VideoRecorderConfiguration.getCaptureInterval())` in VideoRecord...