Ankit

Results 33 comments of Ankit

@RubenKelevra the package on pypi is not updated since 2018. You can install the latest version of pyment using `pip install git+https://github.com/dadadel/pyment.git` or if you're using poetry then - `poetry...

This project uses [pyppeteer](https://github.com/pyppeteer/pyppeteer) which is uses very old version of Chromium. This is easily fixable. You can check my comment on another issue [here](https://github.com/pyppeteer/pyppeteer/issues/435#issuecomment-1545801943).

I was having the same issue and found out that it was an issue with pyppeteer using (very) old version of Chromium. Once I upgraded the Chromium browser things worked...

This project uses [pyppeteer](https://github.com/pyppeteer/pyppeteer) which is uses very old version of Chromium. This is easily fixable. You can check my comment on another issue [here](https://github.com/pyppeteer/pyppeteer/issues/435#issuecomment-1545801943). Let me know if this...

pyppeteer is using a defaultView port size of 800x600. The only way I was able to do it is by passing a parameter in the launch function called in requests_html.py....

@255kb Please assign this to me.

@condrovic Would you be able to provide some use cases where such a rule can be used?

Seems like Chromium is crashing because pyppeteer uses a very old version of Chromium by default. Try installing latest version of Chromium by setting `PYPPETEER_CHROMIUM_REVISION` to the latest revision. You...

You're using incorrect argument for launch function. It should be - ```python3 browser = await launch({ 'headless': False, 'slowMo': randomWait, 'args': args, 'executablePath': _executablePath, 'userDataDir': _userDataDir, 'defaultViewport': None ```

@2Qt2beStr8 I will work on it as soon as I am able to spare some time. However, iOS 16 has made some fundamental changes to lockscreen so will need to...