My tests break with following error:
"AttributeError: 'NoneType' object has no attribute 'implicitly_wait'"
The funny part is - that if I use Page objects to open page - everything works smooth :)
In my tests, I set:
${SELENIUM_IMPLICIT_WAIT} 30.0
I have defined pageobject - lets call it Object1. When I use:
Web browser opens. Page is loaded. Implicit wait is set and world is a better place :)
But due to other reasons, I need to resign of using page objects in this place. So to open web browser i use "setup" section and then standard keyword: "Go to"
Setup looks like this:
Set Selenium Setup
Open Browser about:blank
Maximize Browser Window
And then in test scenario I just:
But this ends with error:
"AttributeError: 'NoneType' object has no attribute 'implicitly_wait'"
It looks, that there is a problem with implicit wait - but then why it works when I use pageobjects? Any help with fully understanding of this error message? :)