The changes made to browsers.py, async def get_elements_batch(self, elements_id): in v1.1.0 don't seem to be backward compatible with 2022x. Was this intentional or does additional logic need to be added to allow different code paths for different TWC versions?
With 2022x and the v1.1.0, when client.py calls data = json.dumps(data) in post(), the json it generates isn't parse able by 2022x server. Server expects plain comma separated string.
The changes made to browsers.py,
async def get_elements_batch(self, elements_id):in v1.1.0 don't seem to be backward compatible with 2022x. Was this intentional or does additional logic need to be added to allow different code paths for different TWC versions?With 2022x and the v1.1.0, when client.py calls
data = json.dumps(data)inpost(), the json it generates isn't parse able by 2022x server. Server expects plain comma separated string.