If you use selenium webdriver to automate regression test cases, you may have got the following error. Because a bug in chromedriver version 2.3 causes this error. According to Google Dev ., this problem had fixed in version 2.6. Assigning the chrome driver to driver leads to this error by the line 38, which is self.driver = webdriver.Chrome() . To solve the problem, you need to change the chromedriver version 2.3 in your execution path, like C:\Windows\System32 under Windows, with newer version. You can download chrome driver from googleapis . Error message may like this: Traceback (most recent call last): File "D:\workspace\automation_project\run.py", line 32, in <module> m = Project(browser, server) File "D:\workspace\automation_project\test_case_imps.py", line 38, in __init__ self.driver = webdriver.Chrome() File "C:\Python27\lib\site-packages\selenium-2.35.0-py2.7.egg\selenium\webdriver\chr...
Not a feature, but the future of an app is under testing.