From 5b3a12a4e91ec58b6f2f58d64a6dcafd9571f920 Mon Sep 17 00:00:00 2001 From: Deep Sukhwani Date: Sun, 14 Sep 2014 15:11:11 +0530 Subject: [PATCH] Update getting-started.rst On line 172 added "The test case method should always start with characters `test`" because I was very confused myself at first when I created a test case whose name did not start with letters 'test' and my test was not running at all. --- source/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started.rst b/source/getting-started.rst index 162e233..b492316 100644 --- a/source/getting-started.rst +++ b/source/getting-started.rst @@ -169,7 +169,7 @@ case class. Here you are creating the instance of Firefox WebDriver. def setUp(self): self.driver = webdriver.Firefox() -This is the test case method. The first line inside this method +This is the test case method. The test case method should always start with characters `test`. The first line inside this method create a local reference to the driver object created in `setUp` method.