How can I test in IE while developing under Mac OS X?

后端 未结 7 1419
闹比i
闹比i 2021-02-05 13:03

I\'ve got my web application on Mac OS X and it\'s ready for IE compatibility testing. I\'ve tried running the server, booting up VMware and pulling up localhost:3000

7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-05 13:35

    In your Macs Terminal, type

    ifconfig vmnet1
    

    You will get back something like:

    vmnet1: flags=8863 mtu 1500
        ether .... 
        inet 192.168.18.1 netmask 0xffffff00 broadcast 192.168.18.255
    

    You can use the IP returned after "inet" (192.168.18.1 in this case) to connect to your app like e.g

    http://192.168.18.1:3000
    

    As opposed to the other answers given, using the gateway address of the Windows client does not work for me, it is different.

提交回复
热议问题