Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Search WebTable?
#13
Solved: 11 Years, 8 Months, 1 Week ago
Thanks,

For all the help!

I was able to use the below code to search a web table for a specific Name(Andrew APRS Fox) and a specific Access Type(Internet)for the current date and once found click on the link in the 7th column for that specific request. Here is the code in case someone else has a simular issue.

Again Thanks for all the Help!

Code:
Dim objTable, intRow
Today = MonthName(Month(Now),True)&" "&Day(Now)&" "&Year(Now)

Set objTable = Browser("").Page("").WebTable("")
Rcount = 1
do until Rcount = objTable.RowCount +1
If objTable.GetCellData(Rcount, 1) = "Andrew APRS Fox" Then
If objTable.GetCellData(Rcount, 3) = "Internet" Then
If Mid(objTable.GetCellData(Rcount, 5),11,1) = " "
Then
covdate = Left(Today,10)
Else
covdate = Left(Today, 11)
End If
If covdate = Today Then
If objTable.GetCellData(Rcount, 6) = "PENDING APPROVAL " Then
Exit do
End If
End If
End If
End If
Rcount = Rcount + 1
loop
If Rcount = objTable.RowCount +1Then
msgbox "No Matching Records Found"
End If
Set View = Browser("").Page("").WebTable("").ChildItem(Rcount, 7, "Link", 0)

View.Click
Thanks,
Brian
Reply


Messages In This Thread
Search WebTable? - by Brian T. - 06-24-2010, 01:32 AM
RE: Search WebTable? - by Saket - 06-24-2010, 10:09 AM
RE: Search WebTable? - by Brian T. - 06-28-2010, 10:51 PM
RE: Search WebTable? - by basanth27 - 06-29-2010, 09:55 AM
RE: Search WebTable? - by Saket - 06-29-2010, 11:45 AM
RE: Search WebTable? - by Brian T. - 06-29-2010, 09:26 PM
RE: Search WebTable? - by Brian T. - 06-30-2010, 06:53 PM
RE: Search WebTable? - by Brian T. - 07-01-2010, 01:28 AM
RE: Search WebTable? - by Saket - 07-01-2010, 11:38 AM
RE: Search WebTable? - by Brian T. - 07-01-2010, 06:27 PM
RE: Search WebTable? - by sasmitakumari - 07-13-2010, 10:31 AM
RE: Search WebTable? - by Brian T. - 07-14-2010, 12:32 AM
RE: Search WebTable? - by surya_7mar - 07-06-2010, 09:40 AM
RE: Search WebTable? - by Arun Prakash - 07-19-2010, 03:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  CyberArk CorePAS REST API to search for accounts pramod 0 983 06-29-2023, 03:11 PM
Last Post: pramod
  Search All Test scripts For a Function? AndyBSG 1 2,926 02-19-2015, 04:15 AM
Last Post: supputuri
  Search for a string in all the files under all subdirectory Mahesh27 1 2,355 07-03-2013, 03:24 PM
Last Post: Sathiya
  Testing Search box kriday 1 2,635 06-26-2013, 08:51 AM
Last Post: basanth27
  Search for a word in excel string QAVA 6 9,876 11-23-2012, 11:17 AM
Last Post: vinod123

Forum Jump:


Users browsing this thread: 1 Guest(s)