How can I use SST with IE on Windows?
In most of my use cases I use Ubuntu and SST works great. On Windows it runs well in Firefox, but when I use the -b InternetExplorer argument, it fails with the error listed below. I assumed this was because I was lacking a webdriver for ie, but from what I can tell I have one - in the C:\Python27\
Error:
Traceback (most recent call last):
File "c:\python27\
webdriver_
File "c:\python27\
browser = getattr(webdriver, browser_type)()
AttributeError: 'module' object has no attribute 'InternetExplorer'
Question information
- Language:
- English Edit question
- Status:
- Solved
- Assignee:
- Corey Goldberg Edit question
- Solved by:
- Craig
- Solved:
- 2012-01-05
- Last query:
- 2012-01-05
- Last reply:
- 2012-01-05
Corey Goldberg (coreygoldberg) said : | #1 |
try with '-b Ie' argument (instead ' -b InternetExplorer').
let me know if that works and I will update the SST docs.
thanks!
-Corey
Craig (craigtlandry) said : | #2 |
That did it. Thanks for your quick response.