Using Selenium 3.3.1 and most current version of the webdrivers available (I downloaded them this morning)
First of all, my organization locks down our IE security settings, so I have a need implement the ignoreProtectedModeSettings capability for IE. I've gone into the details of my endpoint and added the following to the Advanced Capability Json:
Code: Select all
{
"ie.options" : {
"ignoreProtectedModeSettings" : true
}
}
Next, my browsers are always maximized by convention, but the OpenBrowser method does not support the maximize parameter for Selenium.
- Has anyone had success retrofitting existing automation for Selenium execution?
What's my JSON error above?
How do I maximize that browser?