Hi Everyone,
I want to thank everyone for all their advice and help. I really appreciate your generosity with your time and knowledge. Unfortunately, I still havenāt resolved my problem. Iām trying to put a variable in the Selector Editor.
I want to chose one of the following hyperlink sections on a web page using a variable:

I want to select one of the sections based on the value of a variable called, varSectionName, which is declared as a string and initialized with a value equal to: Strategic Management Ch., Week 3 Electronic Readings, etc.
The default sequence works correctly and clicks on āWeek 3 Electronic Readingsā:
.
.
.
.

.
.
However, I want to replace the first Edit Attribute āWeek 3 Electronic Readingsā with the variable varSectionName
Aksh, Vinay and others suggested:
ā< webctrl aaname='ā + varSectionName+ āā parentid=āWeek3_controlā tag=āAā / >ā
I tried to follow their suggestions, but it doesnāt like the outer quotes and I get an error.
.
.

.
.
When I donāt use the outer quotes and I put varSectionName in the Section Editor I get the following syntax:
.
.

.
.
The double quotes are replaced by the HTML code for double quotes.
Because it doesnāt recognize varSectionName as a variable, itās putting ā+varSectionName+ā into aaname as the string "+varSectionName+" and then itās trying to locate "+varSectionName+" in the webpage.
How do I get a variable into the Selector Editor so that: and it recognizes varSectionName as āWeek 3 Electronic Readingsā and searches for webctrl aaname=āWeek 3 Electronic Readingsā
========
PSā¦
I like Vikasās suggestion of:
varSelector = āā
varChapterName = āWeek 3 Electronic Reserve Readingsā
Using String.format(varSelector,varChapterName) in Edit Selector window.
But I donāt know how to put it in the Selector Editor either.
Thanks again for everyoneās helpā¦