Commit.
This commit is contained in:
parent
7b9c5f33d5
commit
0cce2559fc
|
@ -0,0 +1,22 @@
|
|||
from Common.Basic import *
|
||||
from Po.Home.Signin import *
|
||||
|
||||
|
||||
@ddt.ddt
|
||||
class TestSigninSite(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls) -> None:
|
||||
cls.driver = WebDriver()
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls) -> None:
|
||||
cls.driver.quit()
|
||||
|
||||
def test_screenshot(self):
|
||||
self.driver.open('https://www.fanscloud.net/d/index.html')
|
||||
self.driver.wait(2)
|
||||
self.driver.screenshot_for_report()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Loading…
Reference in New Issue