51Testing软件测试论坛
标题:
selenium 使用pywinauto上传文件 python脚本卡死,求大神指导
[打印本页]
作者:
一夜星辰
时间:
2019-7-19 09:46
标题:
selenium 使用pywinauto上传文件 python脚本卡死,求大神指导
本帖最后由 一夜星辰 于 2019-7-19 09:50 编辑
软件是公司自己基于cef写的类似浏览器的软件
点击'Select teplate'按钮弹出上传文件选择的界面
[attach]125713[/attach]
文件选择界面
[attach]125714[/attach]
当python运行到打开此界面后python脚本就无法运行下去,请大神帮我看一下:附上代码,能打印1111,但是2222没打印出来
def upload_master_table(self, xls_path):
self._judge_import_information_show()
# 点击选择的标签页
check_master_table_xpath = '//input[@value="Master Table"]/../..'
self._click_btn(check_master_table_xpath)
# 点击打开上传文件对话框
xpath = '//span[text()="Select template"]'
print "1111"
self._click_btn(xpath)
print "2222"
sleep(2)
# 输入要上传的文件地址进行上传
upload(xls_path)
复制代码
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2