This commit is contained in:
zhaoyafan 2023-03-14 18:04:25 +08:00
parent 7b9c5f33d5
commit 0cce2559fc
1 changed files with 22 additions and 0 deletions

22
Testcase/test_b.py Normal file
View File

@ -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()