HOW TO CLICK ON BUTTON CERCA IN WEB PAGE

sal21

Active Member
Joined
Apr 1, 2002
Messages
291
based :


put in box
Inserisci la Partita Iva

02916070606

and simulate the clcik event on button CERCA.

tks.

I just have IE object actived
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try the following...

VBA Code:
    Dim HTMLDoc As Object
    Set HTMLDoc = IE.document
    
    HTMLDoc.querySelector("input[type='search']").Value = "02916070606"
    
    HTMLDoc.querySelector("button[type='submit']").Click

Hope this helps!
 
Upvote 0
great bro!
tks.

only one help.

after click on CERCA, i have a result of information in a table.

Possible to get all info in bold ?

Tks as usual
 
Upvote 0
Not the first time, so please make it the last:

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at:

There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,661
Members
449,114
Latest member
aides

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