Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unable to click on moving text in a website
#1
Not Solved
Hi,

In a website "http://www.indianrail.gov.in/#" I need to find out link ""Revised Refund Rules w.e.f. 01.07.2013" and click on it.
I have written the code...it says link is found but not clicking on it.
What could be the reason?
Code:
Set oLink = Description.Create()
oLink("micClass").value = "Link"
oLink("html tag").value = "A"

Set listLinks = oPage.ChildObjects(oLink)
no_links = listLinks.count

str =  "Revised Refund Rules w.e.f. 01.07.2013"
For i=1 to no_links
arr =listLinks(i).getroproperty("innertext")
     If  instr(str,arr)>0Then
        If listLinks(i).Getroproperty("visible")=True Then
            print "link is found"
            listLinks(i).click
        wait 3
        End if

        Exit for
     End If
Next
Reply


Messages In This Thread
Unable to click on moving text in a website - by Akhila - 07-06-2013, 05:39 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Moving Test Resource(ALM) to other Folder Bastian-31 0 1,485 09-18-2017, 12:24 PM
Last Post: Bastian-31
  "Continue to this website (not recommended)." Error we are getting kotaramamohana 7 28,014 07-21-2016, 09:55 PM
Last Post: Ranjith Nair
  Unable to click on the WebButton with specified Index srach84 2 4,052 03-31-2015, 04:36 AM
Last Post: srach84
  Unable to click on WebButton in WebTable srach84 1 2,896 02-09-2015, 09:07 PM
Last Post: arpan
  How to click on a dynamic link on a website Geekgirl 3 4,220 11-28-2013, 11:53 AM
Last Post: Jay

Forum Jump:


Users browsing this thread: 1 Guest(s)