Good day! I'm trying to figure out how to parse web pages with vba. The situation is as follows: there is a website with input fields. All of these fields have the same classname. How to address the required field (and write something there)? They have no indices or other unique features. Or maybe I do not know something. Thanks in advance.

Added a screenshot with the site code, it just opens a block with input fields. I opened one of these fields. Unfortunately, there is no other browser.

site code with the necessary elements

    1 answer 1

    Understood: despite the fact that there are many elements of the same class in the page code, in vba, one element has some item. Set x = getelementbyclassname (“classname”)

    And x will have item (1), item (2), and so on. There and transfer values.