Pull XML Value From Web Page

Schwimms

New Member
Joined
Jan 31, 2008
Messages
49
Hi All,

I have the following code to open a webpage:
Code:
Sub Test()
    Dim IE As Object
    Dim x As Integer
    Dim e As Variant
    Dim d As Integer
    Dim Ar1 As Variant
    Ar1 = Array("food", "drinks")
 
    For d = 0 To 1
 
    x = 1
    Do Until x = e + 1
    Set IE = CreateObject("InternetExplorer.Application")
    With IE
        .Visible = True
        .Navigate "[URL]http://api.eventful.com/rest/events/search?...&c[/URL]=" & Ar1(d) & "&t=future&location=Chicago&page_number=" & x & "&page_size=100&app_key=xxxxx" ' should work for any URL"
        Do Until .ReadyState = 4: DoEvents: Loop
    End With
 
    IE.ExecWB 17, 0 '// SelectAll
    IE.ExecWB 12, 2 '// Copy selection
    ActiveSheet.PasteSpecial Format:="Text", link:=False, DisplayAsIcon:=False
    Range("A1").Select
    x = x + 1
    IE.Quit
    Loop
 
    ActiveWorkbook.SaveAs Filename:="C:\Users\Schwimms\Desktop\Scraper\excel XML\" & Ar1(d) & ".xlsm", _
        FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
    Selection.End(xlDown).Select
    Range(Selection, Selection.End(xlUp)).Select
    Selection.ClearContents
    Selection.End(xlUp).Select
    Range("A1").Select
    Ar1(d) = Ar1(d + 1)
    Next d
End Sub

The page that opens is in xml and in that xml there is the "page_count" that I need to pick out so I can tell my macro when to stop looping. I have dimmed it as "e" in the code above. Following is the XML.

<SEARCH>
<TOTAL_ITEMS><SEARCH>
HTML:
360 
100 
4

Somehow I need c = "4", which is the "page_count". Does anyone know how I can pick out the "4" from the xml on my page?
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
The XML dissappeared when I posted this and I can't get it to stay, I had to remove the brackets and replace with ( below:

(search)
(total_items)360(/total_items)
(page_size)100(/page_size)
(page_count)4(/page_count)
 
Last edited:
Upvote 0
If it's a web API, you should be using the MSXML object model to consume it. In which case I could pull the page count like this:

Code:
Dim xmlDoc As Object ' MSXML2.DOMDocument
Dim xmlDocRoot As Object ' MSXML2.IXMLDOMNode
Dim search As Object ' MSXML2.IXMLDOMNode
Dim pageCount As Long
 
Set xmlDoc = CreateObject("MSXML2.DOMDocument.6.0")
' ... after loading XML ...
Set search = xmlDoc.documentElement
Set pageCount = search.ChildNodes(2).nodeTypedValue

You could create a HTML document and parse it as shown at An exploration of IE browser methods, part II

Or you could some simple String methods like Instr, Mid, Left, etc.
 
Upvote 0
Are you saying there is a better way for me to pull the data and parse it directly into a table? If so could you help me with understanding that?

Here is the XML:

Code:
 [COLOR=#0000ff]<?xml version="1.0" encoding="UTF-8" ?>[/COLOR] 
[URL="http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=xvZ5RFj8q6N2FBRk#"][B][FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT][/B][/URL] [COLOR=#0000ff]<[/COLOR][COLOR=#990000]search[/COLOR][COLOR=#0000ff]>[/COLOR]
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]total_items[/COLOR][COLOR=#0000ff]>[/COLOR][B]362[/B][COLOR=#0000ff]</< font>[COLOR=#990000]total_items[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]page_size[/COLOR][COLOR=#0000ff]>[/COLOR][B]100[/B][COLOR=#0000ff]</< font>[COLOR=#990000]page_size[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]page_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]4[/B][COLOR=#0000ff]</< font>[COLOR=#990000]page_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]page_number[/COLOR][COLOR=#0000ff]>[/COLOR][B]1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]page_number[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]page_items[/COLOR][COLOR=#0000ff]>[/COLOR][B]100[/B][COLOR=#0000ff]</< font>[COLOR=#990000]page_items[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]first_item[/COLOR][COLOR=#0000ff]>[/COLOR][B]1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]first_item[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]last_item[/COLOR][COLOR=#0000ff]>[/COLOR][B]100[/B][COLOR=#0000ff]</< font>[COLOR=#990000]last_item[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]search_time[/COLOR][COLOR=#0000ff]>[/COLOR][B]0.033[/B][COLOR=#0000ff]</< font>[COLOR=#990000]search_time[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
[URL="http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=xvZ5RFj8q6N2FBRk#"][B][FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT][/B][/URL] [COLOR=#0000ff]<[/COLOR][COLOR=#990000]events[/COLOR][COLOR=#0000ff]>[/COLOR]
[URL="http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=xvZ5RFj8q6N2FBRk#"][B][FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT][/B][/URL] [COLOR=#0000ff]<[/COLOR][COLOR=#990000]event id[/COLOR][COLOR=#0000ff]="[/COLOR][B]E0-001-032524890-4[/B][COLOR=#0000ff]">[/COLOR]
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]title[/COLOR][COLOR=#0000ff]>[/COLOR][B]Atlantic Bar & Grill Specials[/B][COLOR=#0000ff]</< font>[COLOR=#990000]title[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]url[/COLOR][COLOR=#0000ff]>[/COLOR][B][URL]http://eventful.com/chicago/events/atlantic-bar-grill-specials-/E0-001-032524890-4[/URL][/B][COLOR=#0000ff]</< font>[COLOR=#990000]url[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]description[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</< font>[COLOR=#990000]description[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]start_time[/COLOR][COLOR=#0000ff]>[/COLOR][B]2011-03-01 00:00:00[/B][COLOR=#0000ff]</< font>[COLOR=#990000]start_time[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]stop_time[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]tz_id[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]tz_olson_path[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]tz_country[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]tz_city[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]venue_id[/COLOR][COLOR=#0000ff]>[/COLOR][B]V0-001-002068255-5[/B][COLOR=#0000ff]</< font>[COLOR=#990000]venue_id[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]venue_url[/COLOR][COLOR=#0000ff]>[/COLOR][B][URL]http://eventful.com/chicago/venues/atlantic-bar-grill-/V0-001-002068255-5[/URL][/B][COLOR=#0000ff]</< font>[COLOR=#990000]venue_url[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]venue_name[/COLOR][COLOR=#0000ff]>[/COLOR][B]Atlantic Bar & Grill[/B][COLOR=#0000ff]</< font>[COLOR=#990000]venue_name[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]venue_display[/COLOR][COLOR=#0000ff]>[/COLOR][B]1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]venue_display[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]venue_address[/COLOR][COLOR=#0000ff]>[/COLOR][B]5062 North Lincoln Avenue[/B][COLOR=#0000ff]</< font>[COLOR=#990000]venue_address[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]city_name[/COLOR][COLOR=#0000ff]>[/COLOR][B]Chicago[/B][COLOR=#0000ff]</< font>[COLOR=#990000]city_name[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]region_name[/COLOR][COLOR=#0000ff]>[/COLOR][B]Illinois[/B][COLOR=#0000ff]</< font>[COLOR=#990000]region_name[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]region_abbr[/COLOR][COLOR=#0000ff]>[/COLOR][B]IL[/B][COLOR=#0000ff]</< font>[COLOR=#990000]region_abbr[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]postal_code[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]country_name[/COLOR][COLOR=#0000ff]>[/COLOR][B]United States[/B][COLOR=#0000ff]</< font>[COLOR=#990000]country_name[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]country_abbr2[/COLOR][COLOR=#0000ff]>[/COLOR][B]US[/B][COLOR=#0000ff]</< font>[COLOR=#990000]country_abbr2[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]country_abbr[/COLOR][COLOR=#0000ff]>[/COLOR][B]USA[/B][COLOR=#0000ff]</< font>[COLOR=#990000]country_abbr[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]latitude[/COLOR][COLOR=#0000ff]>[/COLOR][B]41.97336[/B][COLOR=#0000ff]</< font>[COLOR=#990000]latitude[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]longitude[/COLOR][COLOR=#0000ff]>[/COLOR][B]-87.691971[/B][COLOR=#0000ff]</< font>[COLOR=#990000]longitude[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]geocode_type[/COLOR][COLOR=#0000ff]>[/COLOR][B]EVDB Geocoder[/B][COLOR=#0000ff]</< font>[COLOR=#990000]geocode_type[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]all_day[/COLOR][COLOR=#0000ff]>[/COLOR][B]2[/B][COLOR=#0000ff]</< font>[COLOR=#990000]all_day[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]recur_string[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]trackback_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]0[/B][COLOR=#0000ff]</< font>[COLOR=#990000]trackback_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]calendar_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]0[/B][COLOR=#0000ff]</< font>[COLOR=#990000]calendar_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]comment_count[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]link_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]link_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]going_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]-1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]going_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]watching_count[/COLOR][COLOR=#0000ff]>[/COLOR][B]-1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]watching_count[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]created[/COLOR][COLOR=#0000ff]>[/COLOR][B]2010-07-30 01:21:46[/B][COLOR=#0000ff]</< font>[COLOR=#990000]created[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]owner[/COLOR][COLOR=#0000ff]>[/COLOR][B]evdb[/B][COLOR=#0000ff]</< font>[COLOR=#990000]owner[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]modified[/COLOR][COLOR=#0000ff]>[/COLOR][B]2011-02-23 03:28:44[/B][COLOR=#0000ff]</< font>[COLOR=#990000]modified[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]performers[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]image[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]privacy[/COLOR][COLOR=#0000ff]>[/COLOR][B]1[/B][COLOR=#0000ff]</< font>[COLOR=#990000]privacy[/COLOR][COLOR=#0000ff]>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]calendars[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]groups[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
[URL="http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=xvZ5RFj8q6N2FBRk#"][B][FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT][/B][/URL] [COLOR=#0000ff]<[/COLOR][COLOR=#990000]going[/COLOR][COLOR=#0000ff]>[/COLOR]
[URL="http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=xvZ5RFj8q6N2FBRk#"][B][FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT][/B][/URL] [COLOR=#0000ff]<[/COLOR][COLOR=#990000]user[/COLOR][COLOR=#0000ff]>[/COLOR]
 [COLOR=#0000ff]<[/COLOR][COLOR=#990000]username[/COLOR] [COLOR=#0000ff]/>[/COLOR] 
 
 [COLOR=#0000ff]</< font>[COLOR=#990000]user[/COLOR][COLOR=#0000ff]>[/COLOR]
 
 
 [COLOR=#0000ff]</< font>[COLOR=#990000]going[/COLOR][COLOR=#0000ff]>[/COLOR]
 
 
 [COLOR=#0000ff]</< font>[COLOR=#990000]event[/COLOR][COLOR=#0000ff]>[/COLOR]
[/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR][/COLOR]
 
Upvote 0
That XML doesn't look to be correctly formatted to me, The nodes are not being closed.

<page_size>100</< font>page_size>

Should be <page_size>100</</< font>page_size>

Edit: Right I get it, the board stripped them out :)
 
Upvote 0
I thought of another way to get this data into Excel. Try this code and see if it works for you, in which case we wouldn't need to parse the XML at all. Obviously you would replace "XXXXX" with your API key.

Code:
Sub GetEvents()
  ' delete existing XML map, if any
 If ActiveWorkbook.XmlMaps.count > 0 Then
    ActiveWorkbook.XmlMaps.item(1).Delete
  End If
  ' clear out range
 Range("C1").CurrentRegion.cells.Clear
  ' hide any XML error alerts
   Application.displayAlerts = False
 
    ' import from XML
   ActiveWorkbook.XmlImport URL:= _
        "[URL]http://api.eventful.com/rest/events/search?...&c=food&t=future&location=Chicago&page_number=1&page_size=100&app_key=XXXXXXXXX[/URL]", ImportMap:=Nothing, _
        overwrite:=True, Destination:=Range("C1")
    ActiveSheet.cells.WrapText = False
End Sub
 
Upvote 0
Great! Thank you!

I just need a little more assitance, there are 3 things I would like to do.

1. I tried adding your code previously posted to find the pagecount and it is having an issue near "set pagecount". I'm not sure whats going on.
2. I would like to add a column to the end of the xml with the array name set to all row values. IE for the 100 records I want it to have the word "food" next to it. If possible?
3. Lastly I want to keep adding in data with the loop below the last line of data after the xml is posted although it is saying I cannot overlap a table. Is there a way to just add it in without the headers?

Thanks again!
 
Upvote 0
Woops,

Meant to throw my new code out there.

Code:
Sub Test()
    Dim x As Integer
    Dim e As Variant
    Dim d As Integer
    Dim Ar1 As Variant
    Dim xmlDoc As Object ' MSXML2.DOMDocument
    Dim xmlDocRoot As Object ' MSXML2.IXMLDOMNode
    Dim search As Object ' MSXML2.IXMLDOMNode
    Dim pageCount As Long
 
    Application.DisplayAlerts = False
    e = 1
    Ar1 = Array("food", "movies")
    For d = 0 To 1
    x = 1
    Do Until x = e + 1
    If ActiveWorkbook.XmlMaps.Count > 0 Then
    ActiveWorkbook.XmlMaps.Item(1).Delete
    End If
 
    ' import from XML
    ActiveWorkbook.XmlImport URL:= _
        "[URL]http://api.eventful.com/rest/events/search?...&c[/URL]=" & Ar1(d) & "&t=future&location=Chicago&page_number=" & x & "&page_size=100&app_key=xxxxxx", ImportMap:=Nothing, _
        overwrite:=True, Destination:=Range("a1")
    ActiveSheet.Cells.WrapText = False
 
    Set xmlDoc = CreateObject("MSXML2.DOMDocument.6.0")
    ' ... after loading XML ...
    Set search = xmlDoc.DocumentElement
    'Set pageCount = search.ChildNodes(2).nodeTypedValue
    e = pageCount
    ActiveSheet.Range("a1").End(xlDown).Offset(1, 0).Select
    Loop
    Cells.Select
    Selection.Delete Shift:=xlUp
    Range("A1").Select
    Ar1(d) = Ar1(d + 1)
    Next d
    ActiveWorkbook.SaveAs Filename:="C:\Users\Schwimms\Desktop\Scraper\excel XML\Chicago.xlsm", _
        FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
End Sub
 
Upvote 0
So I was able to pull all the data I needed with a little more corrections made to the code I posted. I notice there is a difference in the column headers from one extract to the other, Is there a way to compile all the extracted data and columns before putting it in a output table? Any other recommendations on how I should be extracting this data instead?
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,734
Members
452,939
Latest member
WCrawford

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top