标签: python selenium testcase
当我从下拉列表中选择一个选项时,我的appium测试用例使用python + selenium重定向页面到主页。
def test_a(self): drop = self.driver.find_element_by_id("dropdown") self.driver.find_element_by_xpath("//select[@id='psic_code']/option[5]").click()
任何人都可以给我一个解决方案吗?谢谢。