Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7128841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T11:10:50+00:00 2026-05-28T11:10:50+00:00

I searched the internet and found examples for; How to click a button which

  • 0

I searched the internet and found examples for;

“How to click a button which is in a webBrowser(internet explorer) in C# ?”

And here is the code which is working on google;

JS :

    void ClickButton(string attribute, string attName)
    {
        HtmlElementCollection col = webBrowser1.Document.GetElementsByTagName("input");
        foreach (HtmlElement element in col)
        {
            if (element.GetAttribute(attribute).Equals(attName))
            {
                element.InvokeMember("click");   // Invoke the "Click" member of the button
            }
        }
    }

But my webpage button has different tags. So the program can’t detect to click it.

My main question is; How to click this button programmatically ?

HTML :

<a class="orderContinue" href="Addresses" title="Sipar Ver">Sipar Devam</a>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T11:10:50+00:00Added an answer on May 28, 2026 at 11:10 am

    Naturally the code you’ve posted won’t find the tag you’ve posted. It’s looking for tags of type input:

    webBrowser1.Document.GetElementsByTagName("input")
    

    But as you say (and demonstrate):

    But my webpage button has different tags.

    Thus, you need to look for the tag(s) that you use. Something like this:

    webBrowser1.Document.GetElementsByTagName("a")
    

    This would return the anchor elements within the document. Then, naturally, you need to find the specific one(s) you want to click. That’s what this line is doing:

    if (element.GetAttribute(attribute).Equals(attName))
    

    Whether it finds the target tag(s) depends entirely on the values for those variables, which I assume you know and can manage.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've searched the Internet and have found some good solutions for teeing STDOUT to
I have searched through internet & found that there are no any direct method
I've searched on the Internet for comparisons between F# and Haskell but haven't found
I have searched far and wide on the Internet but have not found anything
I'm trying to optimize my C++ code. I've searched the internet on using dynamically
I searched by google but I found that much I can't overview it all,
I have searched the internet now for quite a while and found several bits
I faced this question in interview. When I searched on internet I found different
I searched from internet, but I only found php solutions to this problem. Please
I searched the internet and found a solution, how to change device brightness from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.