I need to use `wire` mode and `uc` too, but... **✅ It works** ```python >>> driver = Driver(wire=True) >>> driver.requests [] ``` **❌ It causes a webdriver class conflict** ```python >>> driver = Driver(wire=True, uc=True) >>> driver.requests AttributeError: 'Chrome' object has no attribute 'requests' ```