-
Notifications
You must be signed in to change notification settings - Fork 783
Description
Hi
i get this exception
17:04:55.637 WARN - Exception thrown
java.util.zip.ZipException: invalid stored block lengths
at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164)
at java.util.zip.ZipInputStream.read(ZipInputStream.java:163)
at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:109)
at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:87)
at org.openqa.selenium.io.Zip.unzip(Zip.java:145)
at org.openqa.selenium.io.Zip.unzip(Zip.java:123)
at org.openqa.selenium.remote.server.handler.UploadFile.call(UploadFile.java:44)
at org.openqa.selenium.remote.server.handler.UploadFile.call(UploadFile.java:1)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
at java.util.concurrent.FutureTask.run(FutureTask.java:166)
at org.openqa.selenium.remote.server.DefaultSession$1.run(DefaultSession.java:150)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:679)
17:04:55.652 WARN - Exception: invalid stored block lengths
when trying to
Input Text id_username ${user}
when user is a string doublechecked that
and what's really strange, if i change this to:
Input Text id_username '${user}'
it passes ok, but of course sets wrong field value!