I've been running selenium tests against a site and on one of the main pages that people use most often the page is 450KB. It's a horribly designed page but that's not really the point. When I'm writing my selenium tests, every time the test needs to locate something on the page by an ID, it takes 30 seconds to find the element. As a result, this is making the tests run incredibly slow.
I'm using iehta as the browser type. It's also an https site.
I'm also using the following for the xpath parser which I've heard is supposed to be faster.
selenium.UseXpathLibrary("javascript-xpath");
If you can think of anything that would make locating these elements faster, any hints or suggestions please let me know. I'm wondering if I need to configure something differently on my system to make the locating of the elements go faster.