Live edit not refreshing
Hello,
I'm trying to use live edit with html, the plugin is installed and activated and when I run the debugger chrome launch the page (the integrated one, I'm not using the chrome extention), but not a single modification will show, the page is never refreshed...
My settings :

PhpStorm 2020.2.4
Build #PS-202.8194.11, built on November 25, 2020
请先登录再写评论。
Can you repeat the issue with a simple HTML file? Please provide a video recording of your steps
Having the same issue. It appeared after the last updates. Fo some reason it opens integrated Chrome instead default Chrome browser. It is updating html file changes but ignores css files changes.
I have nothing to record sorry, but phpstorm is just installed, i use a local repository (synced with ftp), I can reproduce with any html file, I launch the debug, the integrated chrome open and display the page but nothing ever update.
I tried with the chrome pluging too, but it didn't even open the page.
>I can reproduce with any html file
it works fine for me
A video recording of the issue would be helpful
>Fo some reason it opens integrated Chrome instead default Chrome browser
Not sure I follow you. What is integrated Chrome? the IDE doesn't have any browsers built in
>Not sure I follow you. What is integrated Chrome? the IDE doesn't have any browsers built in
Then it is a very strange situation. My default browser is in English and has some bookmarks etc. but when I open debug then Chrome opens with Russian language and no bookmarks and no extensions.
Ah, I see.
PhpStorm uses Chrome protocol with
--remote-debugging-portoption for javascript debugging. Debug session is started in a new window and using new, fresh custom Chrome profile to make sure that no instances that use the same user data are running - this is required as a port for debugging can't be opened after browser is started, that's why you don't see your bookmarks, etc.Note that you can modify Chrome settings in Settings | Tools | Web Browsers to launch Chrome with your own user data (settings, extensions, etc.) - see https://www.jetbrains.com/help/phpstorm/configuring-javascript-debugger.html#ws_js_debug_default_chrome_user_data
But, if you do this, always make sure that Chrome is not already running with your user data before starting a debugging session, it won't work otherwise.