Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I test in IE 9 on OS X?

I'd prefer not to spend any money. I know Microsoft used to maintain some .VPC images that could be imported into VirtualBox/etc., but I was reading another StackOverflow that said this doesn't work anymore -- an activation is forced.

Ideas?

like image 866
Aaron Shaver Avatar asked Feb 18 '23 17:02

Aaron Shaver


1 Answers

There's a project named ievms on Github that sets up VMs for IE6, IE7, IE8 and IE9 (all on separate virtual machines).

Instructions (taken from the project page here):

 1. Install VirtualBox
 2. Download and unpack ievms
   - Install IE versions 6, 7, 8 and 9.
        curl -s https://raw.github.com/xdissent/ievms/master/ievms.sh | bash
   - Install specific IE versions (IE7 and IE9 only for example):
        curl -s https://raw.github.com/xdissent/ievms/master/ievms.sh | IEVMS_VERSIONS="7 9" bash
 3. Launch Virtual Box
 4. Choose ievms image from Virtual Box.
 5. Install VirtualBox Guest Additions (pre-mounted as CD image in the VM).
 6. IE6 only - Install network adapter drivers by opening the `drivers` CD image in the VM.

More details can be found on the project page.

like image 120
Aamir Avatar answered Mar 06 '23 19:03

Aamir