You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browser / Version: Firefox 134.0 Operating System: Windows 10 Tested Another Browser: Yes Other
Problem type: Site is not usable Description: Browser unsupported Steps to Reproduce:
VSee is a website/service used by healthcare providers for video check-ups/appointments. They currently only claim to support Chrome, Edge, and Safari, with a note stating "Firefox and Opera browsers are temporarily not supported." See here.
An easy way to test and confirm this is via their Browser Test page (found here). Ungoogled Chromium results in a green check besides the Browser section, with no errors to be found. Firefox also gives a green check, but adds a yellow warning stating "Video calls will only be available by downloading a desktop application", and refuses to proceed, forcing the user to install VSee's software to join the call.
Despite being a Chromium-based browser and compatible on a technical level, I also tested Brave which fails the Browser test, producing a red x.
(Screenshots are provided below...)
All VSee seems to be doing is checking the user agent and arbitrarily blocking users with browsers that are otherwise fully compatible with the calling.
Excerpt from their Browser test page to confirm this:
//Get user browser
var userBrowser = 'Firefox';
//Double check if browser disabled
var isUnSupportBrowser = evisit.isUnSupportBrowser();
if(isUnSupportBrowser){
userBrowser = isUnSupportBrowser;
}
self.userBrowser = ko.observable(userBrowser);
self.browserInfo = ko.observable();
self.browserVer = ko.observable('(Version 134)');
self.statusBrowser = ko.computed(function () {
//Always return fail for browser disabled
if(isUnSupportBrowser){
return'fail';
}
self.browserInfo("Video calls will only be available by downloading a desktop application");return"warning";
});
self.testLogs.push({
"test": 'Browser',
"note": "Firefox (Version 134)",
"status": "warning"});
URL: https://vsee.me
Browser / Version: Firefox 134.0
Operating System: Windows 10
Tested Another Browser: Yes Other
Problem type: Site is not usable
Description: Browser unsupported
Steps to Reproduce:
VSee is a website/service used by healthcare providers for video check-ups/appointments. They currently only claim to support Chrome, Edge, and Safari, with a note stating "Firefox and Opera browsers are temporarily not supported." See here.
An easy way to test and confirm this is via their
Browser Test
page (found here). Ungoogled Chromium results in a green check besides theBrowser
section, with no errors to be found. Firefox also gives a green check, but adds a yellow warning stating "Video calls will only be available by downloading a desktop application", and refuses to proceed, forcing the user to install VSee's software to join the call.Despite being a Chromium-based browser and compatible on a technical level, I also tested Brave which fails the
Browser
test, producing a redx
.(Screenshots are provided below...)
All VSee seems to be doing is checking the user agent and arbitrarily blocking users with browsers that are otherwise fully compatible with the calling.
Excerpt from their
Browser test
page to confirm this:View the screenshots
Ungoogled Chromium:Firefox:
Brave:
Browser Configuration
From webcompat.com with ❤️
The text was updated successfully, but these errors were encountered: