ContributionsMost RecentMost LikesSolutionsRe: ClickItem select another Option jkrolczy wrote: What browser are you using? Chrome 115 is out and it may be causing ClickItem issues again That was the problem! Thanks Re: ClickItem select another Option Sorry but this not function for me, the drop down list have several items and ClickItem don't select the correct item. I have several Dropdown lists in my page but TestComplete don't work correctly. Don't select the correct Item. I have setted some breakpoints, before execute the command I highlight the Dropdown affected by the command and TC highlight it correctly. When I execute the command (ClickItem) TC select the right Item but when the Dropdown is closed the item that is selected is the wrong one. All this behavior is unacceptable Re: ClickItem select another Option lodecesa wrote: rraghvani wrote: What version of TestComplete are you using? The issue has been fixed in the latest version of TC v15.53.2.7 I'm using Version: 15.45.31.7 x64 I have updated to the v15.53.2.7 but I have the same issue. Re: ClickItem select another Option rraghvani wrote: What version of TestComplete are you using? The issue has been fixed in the latest version of TC v15.53.2.7. Also, see post https://community.smartbear.com/t5/TestComplete-Questions/Selecting-item-from-drop-down-list/m-p/253880 I'm using Version: 15.45.31.7 x64 I'm afraid to update TestComplete because the last time I did it was a tragedy ClickItem select another Option Hi all, in a script test I'm trying to select a Select Option with the ClickItem function but TestComplete select the Option that is ten positions above the desired one. The script portion is: selectElement.scrollIntoView(); selectElement.clickItem(elementName); The HTML code is <select _ngcontent-yqp-c115="" class="form-select form-select-sm select-dark ng-pristine ng-valid ng-touched" id="id-3"> ... <option _ngcontent-yqp-c115="" id="idOpt-3-24" value="16: 24"> <span _ngcontent-yqp-c115="" class="select-option-dark"> Bahamas </span> </option> ... <option _ngcontent-yqp-c115="" id="idOpt-3-34" value="26: 34"> <span _ngcontent-yqp-c115="" class="select-option-dark"> Bolivia </span> </option> ... </select> During the test execution the mouse pointer correctly select the Option desired but when the panel of the select is closed the item selected result the wrong item. I do this two times in a script on two long Select and I have the same behaviour. Why does this happen? Thanks Lorenzo SolvedRe: Checkpoint on a Xpath (no Mapped Object) rraghvani wrote: Is there a particular reason why you would want to do that? Is a dynamic site and I have some problems with the mapped object in the page that show different scenarios Checkpoint on a Xpath (no Mapped Object) Hello, I would like to perform in a Keyword test checkpoint on an XPath instead of a Mapped Object, I don't want the XPath to be mapped. How can I do that? Thank you. Re: Extract comments for documentation rraghvani wrote: It's not possible within TC. However, you can search for "Data Description" in your keyword test file and extract the comments. For example, Thanks for suggest! Is there an application that is able to extract the value of a property of certain tags? So that in my case I can get the value of the Comment property of the Data tag: <Data Comment="The comment in a Keyword test" /> Extract comments for documentation Hi, I need to extract all the comments of a keyword test for documentation needs, a kind of javadoc. It's possible? Thanks Lorenzo How to map object from screen unselectable Hi, I'm trying to map a <table> that is positioned in a <div> but I can't select that table with the mouse because it select the <div>. I move slowly the mouse pointer from the first row of the <table> to the top of it to try to select the <table> but the next element that the pointer select is the <div> that contains the <table>. There is a way to insert manually the <table> element in the Mapped Object panel (inserting its xpath). Thaks Solved