The AWS S3 presigned URL is in the format of “https://address/bucket/filename.extension?presignedquery…”
and allows GET requests using the ETag. However, in Appium, the entire URL including the query is used as the cache key, making the caching functionality useless. It seems like using only the key up to “https://address/bucket/filename.extension”(without query) might work…
Do you have any good ideas?
Thank you.