Looking for a tool to emulate different Internet browsers

I am looking for a tool or a way to view my site in different browsers, such as IE7 and higher, and various versions of firefox.

I am new to CSS, but I have installed some software on my computer that does this for me. This created problems and I had to reinstall Windows. Therefore, I prefer to have some kind of web application to achieve the same goal and reliably show what my website looks like on IE8, for example.

+4
source share
5 answers

In this case, an online solution such as Browserstack may be useful. You can test your web application in different browsers and different versions of browsers without having to install them yourself.

+4
source

Try http://www.my-debugbar.com/wiki/IETester/HomePage for IE 5.5 up, the emulator is not always perfect, but better than most. Most other major browsers have turned to quick release fixes, so if css now works in a standards-compliant browser, it should in the future.

+1
source

This is good for testing IE http://www.my-debugbar.com/wiki/IETester/HomePage But as others have said, you cannot test the real thing better.

+1
source

Another way is to use virtual machines, but this involves installing something like Windows XP and setting up snapshots for different versions of IE / firefox / chrome.

You can do this with virtualBox - https://www.virtualbox.org/

This is all you need to do if the site is hosted on the Internet (see below):

If you test your site locally, you can run a small web server on your main machine so that you can access it on a virtual machine.

You can use XAMMP for this - http://www.apachefriends.org/en/xampp.html

+1
source

Source: https://habr.com/ru/post/1394354/


All Articles