Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Test Automation for Internet Explorer [closed]

Is there any tools for GUI Test Automation for Internet Explorer? I already use Selenium for Mozilla Firefox, but I also need a tool for IE.

like image 592
rlc Avatar asked Oct 01 '10 16:10

rlc


1 Answers

* UPDATE Feb 2020 *

Cypress is a new tool for browser testing and one of the few tools that doesn't use Selenium under the hood. It does NOT, however, support Internet Explorer. It does support Microsoft Edge and many other modern browsers, so hopefully it helps some people.

* UPDATE (older) *

Selenium Web Driver is the successor to Selenium RC.

So the answer is still to use Selenium in some form. That could be any of the supported frameworks.

Personally I'd use Protractor (useful for more than just Angular apps) or Leadfoot (from the Intern.io project).


* ORIGINAL RECOMMENDATION *

If you're already using Selenium, I'd use Selenium Remote Control

like image 136
Snekse Avatar answered Nov 03 '22 00:11

Snekse