Mr.X
Mr.X

Reputation: 31275

internet explorer document readystate query

I am working on mshtml C# IE automation project. I have never seen a value for readystate for internet explorer like this:

enter image description here

It should be set to "complete" after the whole document is loaded but it is giving "windows-1252". Shall I consider this as "complete" and go ahead for next step?

Upvotes: 1

Views: 552

Answers (1)

Margus
Margus

Reputation: 20058

This seems to be incorrectly parsed metadata

<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

If you want to write automation tests then are you sure you are not better of using Selenium?

Upvotes: 1

Related Questions