Forum Discussion

enriquebravo's avatar
enriquebravo
Contributor
2 years ago
Solved

How can I set the value of a selector at runtime?

Hello,

 

I have a scenario that needs to iterate select a value from a dropdown every time it runs. Typically, I use the FindElement action in combination with an xpath expression to click on the required value. My problem is that element that identifies the dropdown changes depending on action on previous steps. 

 

Is it possible to nest FindElement actions?

Is it possible to set NameMapping objects properties from a test run?

 

Thanks.

3 Replies

  • fredsmith's avatar
    fredsmith
    New Contributor

    If you have a look at step 26 on this blog post...

     

    https://www.testmanagement.com/blog/2023/02/building-a-test-automation-framework-with-testcomplete-part-3/

     

    It shows you how to use a Project Variable in the name map. So you can set the value of the Project variable at run time, then use that variable in the namemap / selector when you need it. The key bit is making sure you 'refresh' the namemap if you update the variable. All detailed in the post and in the video.

  • Marsha_R's avatar
    Marsha_R
    Champion Level 3

    You could save the needed value in a variable and then use the variable in the Find Element when you need it in the later steps.

     

    Give us an example of what you are trying to accomplish by editing the name mapping on the fly.