Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Regular expression in Select
#1
Solved: 10 Years, 9 Months ago
Hello,

A very simple action...
I have a JavaList with one of the values "TestNumber1"

So I do
Code:
JavaList("name").Select "TestNumber1"
and it works

but I would like to make it shorter like:
Code:
.Select "Test.*"
but it doesn't work?!

In OR this kind of syntax is OK... but not in string

Thanks,
Reply
#2
Solved: 10 Years, 9 Months ago
Hi Maverick,

Yup i will agree with you, that the select method won't work with regular expression but you can write function/method to select the listitem even with regurlar expression.

Please find the below LOC and open the Google page and then paste and run the code.
'------------------------------------------------------------------------------------
Code:
Browser("name:=Google").Page("title:=Google").Link("name:=Preferences").Click
'I want to select "Hungarian" from the list box.    
WLSelection Browser("name:=Preferences").Page("title:=Preferences").WebList("name:=hl"),"Hung.*"

Function WLSelection(strLBPath,strLBitem)
    Dim LBitem,allitems,itemsnum
    If instr(strLBitem,".*")>0 Then
        LBitem=Split(strLBitem,".*")
        allitems=strLBPath.GetROProperty("all items")
        allitems=split(allitems,";")
        For itemsnum=0 to ubound(allitems)-1
            If instr(allitems(itemsnum),LBitem(0))>0 Then
                strLBPath.Select itemsnum
                Exit for
            End If
        Next
    Else
        strLBPath.Select strLBitem
    End If
End Function
'----------------------------------------------------------------------------------------
Let me know if you need any more info.
Thanks,
SUpputuri
Reply
#3
Solved: 10 Years, 9 Months ago
Hello,

Thanks a lot. I will implement this function... :-)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Need Any digit in xpath path using Regular expression Priyam 1 3,263 10-05-2016, 11:05 AM
Last Post: Ankur
  Regular expression to read two words in lowercase, uppercase and with and without spa sarahq49 1 3,211 04-09-2015, 01:56 AM
Last Post: sarahq49
  Regular expression and script optimisation Padmavathy 1 3,618 03-30-2015, 11:46 AM
Last Post: supputuri
  Regular expression in descriptive programming testernc 1 16,402 12-08-2014, 06:38 PM
Last Post: anshika.agarwal
  need a regular expression. anu05446 0 3,029 11-26-2014, 03:00 PM
Last Post: anu05446

Forum Jump:


Users browsing this thread: 1 Guest(s)