» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with IE + testing

selenium-ice - Google Code

Use Ice to assist with web browser test automation tools, like Selenium. Ice provides a C#-based Browser Helper Object (BHO) for Internet Explorer that exposes native code access to JavaScript. Equivalent extensions for Firefox and Safari are planned.

opensource: del.icio.us tag/opensource

Is “finally” the answer to all IE6 memory leak issues?

Hedger Wang has been scanning a lot of Chinese blogs lately for solutions to IE6 and memory leak issues. One of the things he stumbled upon is a pretty nifty way of nulling the objects to stop memory leaks by using the try ... finally construct. So instead of this solution which leaks memory:

JAVASCRIPT:
  1.  
  2. function createButton() {
  3.       var obj = document.createElement("button");
  4.       obj.innerHTML = "click me";
  5.       obj.onclick = function() {
  6.         //handle onclick
  7.       }
  8.       obj.onmouseover = function() {
  9.         //handle onmouseover
  10.       }
  11.       return obj;//return a object which has memory leak problem in IE6
  12.     }
  13.     var dButton = document.getElementsById("d1").appendChild(createButton());
  14.     //skipped....
  15.  

You can use the following which doesn't:

JAVASCRIPT:
  1.  
  2. function createButton() {
  3.       var obj = document.createElement("button");
  4.       obj.innerHTML = "click me";
  5.       obj.onclick = function() {
  6.         //handle onclick
  7.       }
  8.       obj.onmouseover = function() {
  9.         //handle onmouseover
  10.       }
  11.       //this helps to fix the memory leak issue
  12.       try {
  13.         return obj;
  14.  
  15.       } finally {
  16.         obj = null;
  17.       }
  18.     }
  19.     var dButton = document.getElementsById("d1").appendChild(createButton());
  20. }
  21.  

More demos, proof of concept examples and the "finally" explanation is available on Hedger's blog: Finally, the alternative fix for IE6's memory leak is available

Ajax: Ajaxian

Selenium

<sep/>run directly in a browser, just like real users do. It runs in Internet Explorer, Mozilla and Firefox on Windows, Linux, and Macintosh, Safari on the Mac.

Firefox: del.icio.us/tag/firefox

Windows Internet Explorer Testing Center

MSFT's setup IE8 set of tests we are using to validate our interpretation and implementation of the CSS 2.1 specification

W3C: Del.icio.us W3C Tags

Crosscheck Browserless Testing Framework | The Frontside

<sep/>helps you ensure that your code will run in many different browsers such as Internet Explorer and Firefox, but without needing installations of those browsers. The

Firefox: del.icio.us/tag/firefox

Litmus: Painlessly test your email and website designs

upload a web page, get back screenshots of how it looks on IE 5.0,5.5,6.0,7.0 + Firefox 1.0,1.5,2.0,3.0 + Safari 3 + Opera 7.5,8.1,9.2,9.5

Firefox: del.icio.us/tag/firefox

Paessler | Web page analyzer - Freeware Site Inspector lets you view HTML source, JavaScript source and more in an IE toolbar.

Combines the two most frequently used browser engines (Internet Explorer and Mozilla/Gecko) into one program.

Firefox: del.icio.us/tag/firefox

MRI :: for web developers

Ein Bookmarklet, mit dem man im IE, Webkit und Mozilla-Browsern per CSS-Selektor Elemente sichtbar machen kann.

Firefox: del.icio.us/tag/firefox

WatiN Home

WatiN is developed in C# and aims to bring you an easy way to automate tests with Internet Explorer.

open-source: del.icio.us tag/open-source

WatiN Home

WatiN is developed in C# and aims to bring you an easy way to automate tests with Internet Explorer.

Watir: del.icio.us tag/watir

Watir - Overview

Automated testing that doesn't hurt Watir is a simple open-source library for automating web browsers. It allows you to write tests that<sep/>

Watir: del.icio.us tag/watir

Watir - Overview

Automated testing that doesn't hurt Watir is a simple open-source library for automating web browsers. It allows you to write tests that are easy to read and easy to maintain. It is optimized for simplicity and flexibility. Watir drives browsers the sam

Firefox: del.icio.us/tag/firefox

Page 1 | Next >>