SWEA creates HtmlAnchor control for <A> tag. It is possible that the link is not <A> tag. You can use SWEA DOM navigator to inspect the DOM tree. If "Preview Control Selection" is checked SWEA editor will not create a control automatically. Instead the DOM tree will be navigated to the selected HTML element.
http://by19fd\.bay19\.hotmail\.msn\.com/cgi-bin/HoTMaiL\?curmbox=(.*) &a=(.*)&fti=yes
SWEA is fastest IE automation framework. SWEA provides little overhead to IE (SWEA IE engine is C++ code).
We added scenes because we needed automation to be predictable. You can’t simply click a button. You should be sure that the button is on a right page. The Web application can redirect to wrong page and a click on a button can lead to unpredictable errors. SWEA provides API (scenes and controls) to a Web application and takes care about the control binding. The scene binding is controled by SceneDescriptor. The control binding is controled by ControlDescriptor. The control can be bound by Html Id, Html Name and XPath. By default SWEA generates absolute XPATH expression. If a control position "floats" on a page it is possible to use "relative" XPATH expressions.
For example://A[contains(text(), 'some link text')] will bind HtmlAnchor to <A>some link text</A> tag.