Hi there,
is it possible to execute a test with a webdriver endpoint in firefox private mode?
I need to use webdriver because ranorex instrumentation in firefox doesn't work here (because of restricted admin rights, long story, don't want to tell).
Thanks,
Patrick
Webdriver: start Firerox-Browser in private mode
- Patrick Hollerbach
- Posts: 32
- Joined: Thu Jan 02, 2014 4:00 pm
- Location: Frankurt, Germany
Re: Webdriver: start Firerox-Browser in private mode
Hi,
I’m not using webdriver, but I believe you must simply setup webdriver configuration for FF, similar as discussed here:
viewtopic.php?f=4&t=14065&p=54861
And argument for FF running in private mode, should be “private”.
I’m not using webdriver, but I believe you must simply setup webdriver configuration for FF, similar as discussed here:
viewtopic.php?f=4&t=14065&p=54861
And argument for FF running in private mode, should be “private”.
Pavel Kudrys
Ranorex explorer at Descartes Systems
Please add these details to your questions:
Ranorex explorer at Descartes Systems
Please add these details to your questions:
- Ranorex Snapshot. Learn how to create one >here<
- Ranorex xPath of problematic element(s)
- Ranorex version
- OS version
- HW configuration
- Patrick Hollerbach
- Posts: 32
- Joined: Thu Jan 02, 2014 4:00 pm
- Location: Frankurt, Germany
Re: Webdriver: start Firerox-Browser in private mode
Hi,
you brought me on the right path, thank you!
Working config:
you brought me on the right path, thank you!
Working config:
Code: Select all
{
"browserName": "firefox",
"moz:firefoxOptions": {
"args": [
"-private"
]
}
}