Hoyo
Hoyo

Reputation: 1074

Attaching pre-opened IE or Process to Watin Library

I'm having trouble opening IE9 with -nomerge param with Watin directly, so I thought if I open IE with

Process.Start("IExplore.exe", "-nomerge about:blank");

then attach it to Watin so I can control the browser, or either a way to attach a PID to Watin so Watin can control over it, I've tried the

Settings.MakeNewIe8InstanceNoMerge = true;

but it didn't help at all, Thanks in advance

Upvotes: 0

Views: 324

Answers (1)

alonp
alonp

Reputation: 1337

You can change the configuration globally on your work station by changing this registry entry HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main SessionMerging to 0

Upvotes: 1

Related Questions