klookAppTest

Results 3 issues of klookAppTest

页面 ```html 确定 取消 ``` 实现: ```py import seldom class Test(seldom.TestCase): def test_case2(self): self.get("file:///Users/tech/klpro/github/seldom/test.html") elems = self.get_elements(xpath="//div/button/span") i = 0 for elem in elems: if elem.text == "确定": i =...

I need to customize the attribute in the case For example ```python import unittest import xmlrunner from xmlrunner.result import set_attribute class TestSequenceFunctions(unittest.TestCase): def test_sample(self): set_attribute({"jira": "0001", "case_id": "1001"}) if __name__...

needs_5_whys