ContributionsMost RecentMost LikesSolutionsswitching between IE and FFI've written a suite of scripts to run against IE. How easily switch between running against IE and Firefox? Thanks, DavinaRe: clicking on web elements with no IDI have another element without an ID that I can't figure out how to access. I need to enter text in the textbox found in the following html: <table cellspacing="4" cellpadding="0"> <tbody> <tr> <td align="left" style="vertical-align: top;"> <div class="gwt-Label">Name:</div> </td> <td align="left" style="vertical-align: top;"> <input type="text" tabindex="0" class="gwt-TextBox"> </td> </tr> </tbody> </table> Thanks, DavinaRe: web app element identified with ID attribute is found but not clickedI'm very new to TC. Can you please detail for me how to do the name mapping verification and how to use NativeWebObject.click()?web app element identified with ID attribute is found but not clickedI have a web element in my app that has an ID attribute. In my script I call all.gwt_debug_add_report_component_button_MenuItem.Click(); but the following error: Type Message Time Link There was an attempt to perform an action at point (0, 0), which is out of the window bounds. 15:51:42 So TC is finding the web element, but not successfully clicking on it. Any suggestions on what might be causing this? HTML snippet: <td class="gwt-MenuItem ImageMenuItem-FF gwt-MenuItem-selected" id="gwt-debug-add-report-component-button-MenuItem" role="menuitem" aria-haspopup="true" title="Add Component to Report" style=""> <table class="MenuItem-InnerTable"> <tbody> <tr> <td> <div class="ImageMenuItem-Icon add-report-component-button"></div></td><td><div class="MenuItem-Text" style="display: none;"></div> </td> </tr> </tbody> </table> </td>Re: clicking on web elements with no IDThis worked great! Thanks!clicking on web elements with no IDMy AUT is a web app that has dynamically created pages. Therefore, with the exception of the static widgets that are always present, there's no way to assign static IDs to the elements on the page. I'm using the DOM tree model, and it's working great for those static widgets, but for dynamically created elements, I'm getting Type Message Time Link There was an attempt to perform an action at point (59, 8), which is out of the window bounds. 14:36:14 The line of the script being executed was recorded like this: all.Item(1038).Click(59, 8); I'm wondering if the problem is that the DOM traversal isn't deterministic, and Item(1038) isn't always the same on subsequent loadings. Is there a way for me to identify the element I want to select using xpath or this HTML? <div class="hyperlink report-link list-panel-row">My Link Text</div> Thanks, Davina Re: How to eliminate coordinatesI'm running into a similar problem. TC recorded all.Item(1038).Click(59, 8); but when I run the script, I get an out of bounds error. When I remove the coordinates and leave the parentheses empty, I get the same error for location (0,0). how to insert control characters?I need to insert a Ctrl+A in my user name field so that TestComplete types over the remembered user name. What does Ctrl+A look like in TestComplete?