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 444789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:18:20+00:00 2026-05-12T21:18:20+00:00

I have a web page with a grid, and some columns have a link

  • 0

I have a web page with a grid, and some columns have a link in the column header that will sort the values by that column [by round-tripping to the server].

I want to write a single Watir test that will identify those sorting links and click each one in succession. This is a smoke test that ensures there are no runtime exceptions resulting from the sort expression.

My question is, what is the best way to (1) identify these links, and (2) click each one in succession? This is what I have so far:

$ie.table(:id, "myGrid").body(:index, 1).each do | row |
  row.each do | cell |
    ## todo: figure out if this contains a sort link
    ## todo: click the link now, or save a reference for later?
  end
end
  • 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-12T21:18:21+00:00Added an answer on May 12, 2026 at 9:18 pm

    I think it won’t be possible to click each link inside the loop since clicking a link will trigger a page load and I believe this invalidates the other Watir Link Elements.

    So, what I suggest is that you take the IDs of the links and then loop over each other doing the clicks.


    For instance, I would add an specific class to those sorting links and a meaningful id too.
    Something along the lines of:

    <a id='sortby-name' class='sorting' href='...'>Name</a>
    

    Then you can pick them with this:

    $ie.table(:id, "myGrid").body(:index, 1).each do | row |
      # pick sorting links' ids
      sorting_link_ids = row.links.select{|x| x.class_name == "sorting"}.map{|x| x.id}
    end
    

    And then, you do your clicking like this:

    sorting_link_ids.each do |link_id|
      $ie.table(:id, "myGrid").body(:index, 1).link(:id, link_id).click
    end
    

    Hope that helps!

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

Sidebar

Related Questions

I have a web page that prompts for user input via DropDownLists in some
I have a .Net web forms page, that has a data grid on it
new on rails and using windows for now,, i have web page that user
I have web forms page that has 2 controls. A gridview and an associated
I have a web page that whenever your in a text-field, if you hit
I have a web page that I display in a WPF WebBrowser control within
We have a web part on which we display some data in a grid.
I have a Rad Grid View that I'm using to display some data and
I have a web page with 16 textboxes arranged in a 4x4 grid. The
In one my ASP.NET web page, I have used a Grid and embedded a

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.