hi 大神们,我有个问题,就是在我使用 appium 跑用例时,测试代码的用例写在哪里,和 appium 的代码写在一起吗,还是单独起个 py 文件,里面写个类,然后在 appium 的代码里面调用这个类
请看我的代码
class elment(unittest.TestCase):
def test_(self):
desired_caps = {}
desired_caps["platformName"] = "Android"
desired_caps["platformVersion"] = "4.4.4"
desired_caps["deviceName"] = "123"
desired_caps["udid"] = "6b716a5a"
desired_caps["appPackage"] = "sdff"
desired_caps["appActivity"] = "sdfsdf"
desired_caps["unicodeKeyboard"] = "True"
desired_caps["resetKeyboard"] = "True"
driver = webdriver.Remote(r"http://localhost:4723/wd/hub" , desired_caps)
sleep(10)
el = driver.find_element_by_name("我")
self.assertIsNotNone(el)
el.click()
sleep(5)
licai = driver.find_element_by_name("你")
self.assertIsNotNone(licai)
licai.click()
self.s
driver.quit()
是写在代码里,还是想我说的专门写一个类,然后在 appium 的代码里去调用,如果在 appium 的代码里的话感觉代码会很多