WEBシステム画面で選択画面があります。
変数から文字列を取り込み検索をします。
検索名称は可変です
名称とヒットすればその行にカーソルを合わせたいと思います。
Find Element>set focusで
文字列を変数にして実行してみましたがうまく動作できません。
VNAME01はstring変数です。
Find Element selectorは
String.concat(“<html title=‘system’ /><webctrl omit:parentid=‘treeview-1173-record-362’ tag=‘SPAN’ colName=‘“,Vname01,”’ />”)
として
Set Focus でもselectorは
String.concat(“<html title=‘system’ /><webctrl omit:parentid=‘treeview-1173-record-362’ tag=‘SPAN’ colName=‘“,Vname01,”’ />”)
としました。
<は2バイト文字に表示するためしています。
ご教示お願いします。
AshwinS2
(Ashwin S)
2
Hi @matrix99999
Why you need to put string,concat insisde a selector within selector property
Thanks
Ashwin S
matrix99999
(matrix99999 )
3
Thanks!
As an example
Early Selector
<Wnd app = ‘excel.exe’ cls = ‘XLMAIN’ title = ‘Book1.xlsx-Excel’ />
At that time,
“Book1.xlsx” was stored in the variable [VNAME]
and changed to the following Selector and it worked properly.
String.concat (”<wnd app =‘ excel.exe ’cls =’ XLMAIN ’title =’ ”, VNAME,” * ’/ >”)