<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Crossplatform testing]]></title><description><![CDATA[<p dir="auto">Hi,<br />
Just thought of sharing this, I initially built some scripts for Windows and when whent on to run those on Mac, there was different in how the AUT names were captured in both platforms, windows just took the AUT name however, Mac took the AUT name + Version Number.<br />
This was conflicting and the script failed, I found 2 solutions for this:</p>
<ol>
<li>Change the name of the AUT in the system (maybe this is not possible for all AUTs), eventually I added version number to the name, this way I could add multple versions of the same AUT and it would run smoothly on both the platforms<br />
OR</li>
<li>Identify the OS and choose which application name to use:<br />
OperatingSystem = str(sys.platform)<br />
if OperatingSystem == "Win32":<br />
startApplication("AUT")<br />
else:<br />
startApplication("AUT123"")</li>
</ol>
]]></description><link>https://forum.qt.io/topic/165033/crossplatform-testing</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 05:23:53 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/165033.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 24 Aug 2026 11:06:07 GMT</pubDate><ttl>60</ttl></channel></rss>