Loading [MathJax]/extensions/tex2jax.js

2021年2月23日火曜日

appium windows driver 入門 1

やりたいこと
appium windows driverを使って、C#のサンプルコードを動作させたい。
電卓を操作するサンプルコードです。

ためした環境
Win10 20H2 Home
Microsoft Visual Studio Community 2019

Step1.Windows10をdevelop modeにする
設定 > 更新とセキュリティ > 開発者向け > 開発者モード : ON
※なんのためにこれをやるのかは分かっていないです。

Step2.WinAppDriver install
こちらのサイトからWindowsApplicationDriver_1.2.1.msiをダウンロードしました。
https://github.com/Microsoft/WinAppDriver/releases
インストーラを起動して、ウィザードに従ってインストールしました。

Step3.サンプルコードのダウンロード
1.こちらのサイトにアクセスします。
https://github.com/microsoft/WinAppDriver
2.右上のcode → download zipを選択します。
Step4.サンプルコードを開く
1.ダウンロードしたフォルダのC#の電卓用のサンプルコードを開きます。以下のパスにあります。
\WinAppDriver-master\Samples\C#\CalculatorTest
CalculatorTest.sln

2.CalculatorTest.slnをダブルクリックして開きます。
※Visual Studioが必要になりますので、入っていない場合はインストールしてください。


Visual Studioが起動したら、一旦このままにしておきます。

Step5.WinAppDriverを起動
C:\Program Files (x86)\Windows Application DriverにあるWinAppDriver.exeをダブルクリックします。 コマンドプロンプトが起動します。
これでWinAppDriverが起動したこのになるので、このままにしておきます。
Step6.テスト実行
いよいよテストを実行します。
Visual Studioにて、テストメニュー > 全てのテストをデバッグを選択します。
電卓が起動して、VisualStudio側で例外が発生したら、ひとまず成功です。

112行目の「splitViewPane.FindElementByName("Standard Calculator").Click();」で例外となります。
これはsampleコードが英語環境用に作られているためとなります。

電卓の左上あたりの「標準」をクリックするというプログラムなのですが、sampleでは「standard calculator」を探しているので、それがなくてエラーとなります。
Step7.UIの情報
日本語環境ではうまく動かないので、日本語のコントロールの名称に置き換えて、sampleコードをまともに動くようにしていきます。

1.UIの情報を取得するツール inspect.exeを起動します。
Visual Studio がインストールされている場合は、下記のパスにあります。
C:\Program Files (x86)\Windows Kits\10\bin\XXXXX\x64 (XXXXX はバージョン番号)
なければ、こちらのページを参考にインストールしてください。
https://qiita.com/RPAbot/items/f1d6438c8f2500db65ae

2.inspect.exeを起動したまま、電卓のクリックしたい場所をマウスでポイントすると、inspect.exeにその情報が表示されます。
sampleの「standard calculator」に該当するのは、「標準 電卓」という名前のようです。


3.先ほど例外が発生したところを下記のように書き換えて、もう一度テストを実行してみます。
(変更前)
splitViewPane.FindElementByName("Standard Calculator").Click();
(変更後)
splitViewPane.FindElementByName("標準 電卓").Click();

先ほどよりは少し進むようになりますが、また別のところで例外が発生すると思います。
あとは同じような感じで直していけば最後まで動くようになります。
最後まで直したコードがこちらになります。
Step8.コードを全面的に修正
全面的に日本語環境用に修正したコードがこちらになります。
  1. //******************************************************************************  
  2. //  
  3. // Copyright (c) 2017 Microsoft Corporation. All rights reserved.  
  4. //  
  5. // This code is licensed under the MIT License (MIT).  
  6. //  
  7. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  
  8. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  
  9. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE  
  10. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
  11. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,  
  12. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN  
  13. // THE SOFTWARE.  
  14. //  
  15. //******************************************************************************  
  16.   
  17. using Microsoft.VisualStudio.TestTools.UnitTesting;  
  18. using OpenQA.Selenium.Appium.Windows;  
  19. using System.Threading;  
  20. using System;  
  21.   
  22. namespace CalculatorTest  
  23. {  
  24.     [TestClass]  
  25.     public class ScenarioStandard : CalculatorSession  
  26.     {  
  27.         private static WindowsElement header;  
  28.         private static WindowsElement calculatorResult;  
  29.   
  30.         [TestMethod]  
  31.         public void Addition()  
  32.         {  
  33.             // Find the buttons by their names and click them in sequence to perform 1 + 7 = 8  
  34.             session.FindElementByName("1").Click();  
  35.             session.FindElementByName("プラス").Click();  
  36.             session.FindElementByName("7").Click();  
  37.             session.FindElementByName("等号").Click();  
  38.             Assert.AreEqual("8", GetCalculatorResultText());  
  39.         }  
  40.   
  41.         [TestMethod]  
  42.         public void Division()  
  43.         {  
  44.             // Find the buttons by their accessibility ids and click them in sequence to perform 88 / 11 = 8  
  45.             session.FindElementByAccessibilityId("num8Button").Click();  
  46.             session.FindElementByAccessibilityId("num8Button").Click();  
  47.             session.FindElementByAccessibilityId("divideButton").Click();  
  48.             session.FindElementByAccessibilityId("num1Button").Click();  
  49.             session.FindElementByAccessibilityId("num1Button").Click();  
  50.             session.FindElementByAccessibilityId("equalButton").Click();  
  51.             Assert.AreEqual("8", GetCalculatorResultText());  
  52.         }  
  53.   
  54.         [TestMethod]  
  55.         public void Multiplication()  
  56.         {  
  57.             // Find the buttons by their names using XPath and click them in sequence to perform 9 x 9 = 81  
  58.             session.FindElementByXPath("//Button[@Name='9']").Click();  
  59.             session.FindElementByXPath("//Button[@Name='乗算']").Click();  
  60.             session.FindElementByXPath("//Button[@Name='9']").Click();  
  61.             session.FindElementByXPath("//Button[@Name='等号']").Click();  
  62.             Assert.AreEqual("81", GetCalculatorResultText());  
  63.         }  
  64.   
  65.         [TestMethod]  
  66.         public void Subtraction()  
  67.         {  
  68.             // Find the buttons by their accessibility ids using XPath and click them in sequence to perform 9 - 1 = 8  
  69.             session.FindElementByXPath("//Button[@AutomationId=\"num9Button\"]").Click();  
  70.             session.FindElementByXPath("//Button[@AutomationId=\"minusButton\"]").Click();  
  71.             session.FindElementByXPath("//Button[@AutomationId=\"num1Button\"]").Click();  
  72.             session.FindElementByXPath("//Button[@AutomationId=\"equalButton\"]").Click();  
  73.             Assert.AreEqual("8", GetCalculatorResultText());  
  74.         }  
  75.   
  76.         [TestMethod]  
  77.         [DataRow("1",   "プラス""7""8")]  
  78.         [DataRow("9",  "マイナス""1""8")]  
  79.         [DataRow("8""除算""8""1")]  
  80.         public void Templatized(string input1, string operation, string input2, string expectedResult)  
  81.         {  
  82.             // Run sequence of button presses specified above and validate the results  
  83.             session.FindElementByName(input1).Click();  
  84.             session.FindElementByName(operation).Click();  
  85.             session.FindElementByName(input2).Click();  
  86.             session.FindElementByName("等号").Click();  
  87.             Assert.AreEqual(expectedResult, GetCalculatorResultText());  
  88.         }  
  89.   
  90.         [ClassInitialize]  
  91.         public static void ClassInitialize(TestContext context)  
  92.         {  
  93.             // Create session to launch a Calculator window  
  94.             Setup(context);  
  95.   
  96.             // Identify calculator mode by locating the header  
  97.             try  
  98.             {  
  99.                 header = session.FindElementByAccessibilityId("Header");  
  100.             }  
  101.             catch  
  102.             {  
  103.                 header = session.FindElementByAccessibilityId("ContentPresenter");  
  104.             }              
  105.   
  106.             // Ensure that calculator is in standard mode  
  107.             if (!header.Text.Equals("Standard", StringComparison.OrdinalIgnoreCase))  
  108.             {  
  109.                 session.FindElementByAccessibilityId("TogglePaneButton").Click();  
  110.                 Thread.Sleep(TimeSpan.FromSeconds(1));  
  111.                 var splitViewPane = session.FindElementByClassName("SplitViewPane");  
  112.                 splitViewPane.FindElementByName("標準 電卓").Click();  
  113.                 Thread.Sleep(TimeSpan.FromSeconds(1));  
  114.                 Assert.IsTrue(header.Text.Equals("標準", StringComparison.OrdinalIgnoreCase));  
  115.             }  
  116.   
  117.             // Locate the calculatorResult element  
  118.             calculatorResult = session.FindElementByAccessibilityId("CalculatorResults");  
  119.             Assert.IsNotNull(calculatorResult);  
  120.         }  
  121.   
  122.         [ClassCleanup]  
  123.         public static void ClassCleanup()  
  124.         {  
  125.             TearDown();  
  126.         }  
  127.   
  128.         [TestInitialize]  
  129.         public void Clear()  
  130.         {  
  131.             session.FindElementByName("クリア").Click();  
  132.             Assert.AreEqual("0", GetCalculatorResultText());  
  133.         }  
  134.   
  135.         private string GetCalculatorResultText()  
  136.         {  
  137.             string newStr = "";  
  138.             newStr = calculatorResult.Text.Replace("表示は", string.Empty).Trim();  
  139.             return newStr.Replace("です", string.Empty).Trim();  
  140.             //return calculatorResult.Text.Replace("Display is", string.Empty).Trim();  
  141.         }  
  142.     }  
  143. }  
Step9.できた!!
これで実行すると、電卓が立ち上がって、計算をして、終了するところまで走ります。
できた。
参考にしたサイト
(1)Appium Windows Driverのページ
http://appium.io/docs/en/drivers/windows/
(2)Windows Application Driver を使った Windows ネイティブアプリケーションの UI テスト自動化
https://qiita.com/yuuhu04/items/5a96608ad96eccee34a0

2021年2月11日木曜日

2021年2月6日土曜日

Android Keystore パスワード 忘れた2

 5年ぐらい前に自分のアプリのkeystoreのパスワードを忘れたという記事を書きました。

こちらです。

当時は、Android_Keystore_Password_Recover_1.07.jar を使用して、忘れたパスワードを探したのですが見つからずあきらめてました。


たまたまこちらの記事を見つけて試してみたら見つかりました。

忘れてしまったAndroidの署名情報は見つかるかもしれない


よかった。


ざっくり言うと、taskartifacts.binをバイナリエディタで開いて、storePasswordで検索したところ、そのちょっと後ろにばっちり書いてありました。keyAliasもありました。

※バイナリエディタで検索するときは大文字/小文字をちゃんと意識して検索したほうがよさそうです。

↓の図では赤いところにパスワードが表示されました。