Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28f3e6 commit 9c82679Copy full SHA for 9c82679
source/getting-started.rst
@@ -126,7 +126,7 @@ search functionality::
126
self.driver.close()
127
128
if __name__ == "__main__":
129
- unittest.main(argv=['first-arg-is-ignored'], exit=False)
+ unittest.main()
130
131
132
You can run the above test case from a shell like this::
@@ -140,6 +140,9 @@ You can run the above test case from a shell like this::
140
141
The above result shows that the test has been successfully completed.
142
143
+Note: To run the above test in IPython or Jupyter, we need to pass arguments in main method as shown below:
144
+ unittest.main(argv=['first-arg-is-ignored'], exit=False)
145
+
146
147
Walkthrough of the example
148
~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments