Results 383 comments of Dag

``` $ sudo apt install chromium-driver $ chromedriver --port=4444 --verbose ```

I think it would be very nice with a function e.g. `getContentsWithWebDriver()` that opens page, wait for load and them dumps html. Example: ```php

> How do end users use rss-bridge? I would think that most download the Docker image, a much smaller proportion build the Docker image themselves, and the even smaller remainder...

`IntlDateFormatter` (php extension) might be missing out of the box on e.g. debian: ``` apt install php-intl ``` More info in composer.json: ``` }, "suggest": { "php-webdriver/webdriver": "Required for Selenium...

This was recently merged in master so that users can test it out. Let's call it a beta testing phase. When things are looking good ill add instructions to README....

yes this is similar to what i wrote earlier in this thread: ``` $dom = getContentsWithWebDriver('https://herman.bearblog.dev/blog/'); ``` Essentially a function which returns html string (or parsed DOM) for a dynamic...

your example is actually also possible like this (using `getContents`): ``` $header = ['Content-type: application/json']; $opts = [CURLOPT_POSTFIELDS => json_encode($data_array)]; $html = getContents($url, $header, $opts); ```

@hleskien This is from a stackoverflow answer: ``` In [PHP Selenium WebDriver](https://github.com/php-webdriver/php-webdriver) you can get page source like this: $html = $driver->getPageSource(); Or get HTML of the element like this:...

i really dont want to acquire more docker skills. shall i merge this now?