Initial setup for testing
This commit is contained in:
parent
8b757ad1bd
commit
852e2c9356
|
@ -1,4 +0,0 @@
|
||||||
from selenium import webdriver
|
|
||||||
|
|
||||||
driver = webdriver.chrome()
|
|
||||||
driver.get("http://www.python.org")
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
class LoginFeatureTests(unittest.TestCase):
|
||||||
|
def test_working(self):
|
||||||
|
self.assertTrue(True)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main(verbosity=2)
|
|
@ -0,0 +1,3 @@
|
||||||
|
import test
|
||||||
|
|
||||||
|
test.unittest.main()
|
Loading…
Reference in New Issue