Saad Ardati

Results 48 comments of Saad Ardati

Haven't touched the project I used calendarro in in a long time, sorry. I'll reopen the issue for you though.

Same here. ![image](https://user-images.githubusercontent.com/7407478/69888936-2a0df000-12f7-11ea-9999-50331e82391c.png) No reason as to why. It is in a column widget, nothing is interfering with it. @adamstyrc The container border is expandable, not fixed, and I tried...

I'm getting this issue in my ubuntu container on Google cloud run ``` 2020-06-14T19:32:22.125165ZProcessException: No such file or directory 2020-06-14T19:32:22.125189Z Command: unzip .local-chromium/737027_chrome-linux.zip -d .local-chromium/737027 2020-06-14T19:32:22.125892Z#0 _ProcessImpl._runAndWait (dart:io-patch/process_patch.dart:498:7) 2020-06-14T19:32:22.125907Z#1 _runNonInteractiveProcessSync...

@xvrh Downloading the file directly from `https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/756035/chrome-linux.zip` yields the following file: ![image](https://user-images.githubusercontent.com/7407478/85018012-1f248b00-b175-11ea-96b2-1e22e5c45ad7.png) While puppeteer is assuming the file location to be: ```dart var zipPath = p.join(cachePath, '${revision}_${p.url.basename(url)}'); ``` Which is...

@xvrh I already tried doing ```dart var chromePath = await downloadChrome(); print(chromePath.executablePath); ``` which returns the same result. Here's my docker ```Dockerfile FROM ubuntu:18.04 ENV DART_VERSION=2.8.4 # gnupg2: https://stackoverflow.com/questions/50757647 RUN...

@xvrh I see, you're right you're using zipPath as the download path, but perhaps the file needs to be created prior? ie: File.create(recursive:true), maybe the http client doesn't create the...

I forked the project and did this: ```dart Future _downloadFile(String url, String output) async { var outputFile = File(output); await outputFile.create(recursive: true); var client = http.Client(); var response = await...

Hmm, seems to work, but i did a number of changes, i think it's specifically this that fixed it: ```dockerfile RUN apt-get -y install zip unzip ```

@xvrh Now I'm getting this error: ``` Exception: Websocket url not found 2020-06-24T17:31:28.533239Z#0 _waitForWebSocketUrl (package:puppeteer/src/puppeteer.dart:311:3) 2020-06-24T17:31:28.533249Z 2020-06-24T17:31:28.533259Z#1 Puppeteer.launch (package:puppeteer/src/puppeteer.dart:170:30) 2020-06-24T17:31:28.533266Z ``` With logging set to all: ```dart Logger.root ..level =...