主要使用工具:WinAppDriver,inspect、python-client-appium

官网:https://appium.io/docs/en/drivers/windows/#inspecting-ui-elements

WinAppDriver版本:https://github.com/Microsoft/WinAppDriver/releases

1.window查找元素工具

https://docs.microsoft.com/en-us/windows/win32/winauto/inspect-objects

Microsoft Visual Studio 2015默认包含Windows SDK,它提供了检查您正在测试的应用程序的绝佳工具。此工具允许您查看可以使用Windows应用程序驱动程序查询 的每个UI元素/节点。可以在Windows SDK文件夹下找到此inspect.exe工具,例如 C:\Program Files (x86)\Windows Kits\10\bin\x86。该工具将显示各种元素属性。

如图:

如何使用WinAppDriver实现windows程序自动化_自动化测试

2.启动WinAppDriver.exe

如何使用WinAppDriver实现windows程序自动化_接口测试_02

 

3.实现具体运用DEMO

import unittest

import time

from appium import webdriver

from selenium.webdriver.common.keys import Keys

class NotepadTests(unittest.TestCase):

def test_edit(self):

for i in range(1,5):

desired_caps = {}

desired_caps['app'] = r"C:\Program Files\tengyue\XXX.exe"

self.driver = webdriver.Remote(

command_executor='http://127.0.0.1:4723',

desired_capabilities=desired_caps)

self.driver.implicitly_wait(10)

try:

self.driver.find_element_by_name("重新检测").click()

time.sleep(5)

except:

print("第"+str(i)+"执行成功")

self.driver.quit()

if __name__ == "__main__":

aa=NotepadTests();

aa.test_edit()

最后: 为了回馈铁杆粉丝们,我给大家整理了完整的软件测试视频学习教程,朋友们如果需要可以自行免费领取 【保证100%免费】

如何使用WinAppDriver实现windows程序自动化_程序员_03