diff --git a/packages/E2ETest/.eslintignore b/packages/E2ETest/.eslintignore
new file mode 100644
index 00000000000..a7216be9e6e
--- /dev/null
+++ b/packages/E2ETest/.eslintignore
@@ -0,0 +1,7 @@
+**/node_modules
+wdio
+app
+wdio.conf.js
+hasteImpl.js
+metro.config.js
+postinstall.js
\ No newline at end of file
diff --git a/packages/E2ETest/.eslintrc.js b/packages/E2ETest/.eslintrc.js
new file mode 100644
index 00000000000..e23962f3715
--- /dev/null
+++ b/packages/E2ETest/.eslintrc.js
@@ -0,0 +1,6 @@
+module.exports = { 
+  extends: "@react-native-community",
+  rules:{ 
+    "react-native/no-inline-styles" : 0,
+  }
+};
\ No newline at end of file
diff --git a/packages/E2ETest/.gitignore b/packages/E2ETest/.gitignore
new file mode 100644
index 00000000000..57c83308388
--- /dev/null
+++ b/packages/E2ETest/.gitignore
@@ -0,0 +1,4 @@
+/node_modules
+/windows/ReactUWPTestApp/Generated Files/
+/build
+reports
\ No newline at end of file
diff --git a/packages/E2ETest/.npmrc b/packages/E2ETest/.npmrc
new file mode 100644
index 00000000000..9cf9495031e
--- /dev/null
+++ b/packages/E2ETest/.npmrc
@@ -0,0 +1 @@
+package-lock=false
\ No newline at end of file
diff --git a/packages/E2ETest/.prettierrc.json b/packages/E2ETest/.prettierrc.json
new file mode 100644
index 00000000000..1c8b452b7a8
--- /dev/null
+++ b/packages/E2ETest/.prettierrc.json
@@ -0,0 +1,7 @@
+{
+    "useTabs": false,      
+    "printWidth": 80,      
+    "tabWidth": 2,         
+    "singleQuote": true,  
+    "trailingComma": "es5"    
+}
\ No newline at end of file
diff --git a/packages/E2ETest/README.md b/packages/E2ETest/README.md
new file mode 100644
index 00000000000..0cf38b0e805
--- /dev/null
+++ b/packages/E2ETest/README.md
@@ -0,0 +1,3 @@
+# E2ETest project
+
+This package is not published, and is just used to verify a standalone app
\ No newline at end of file
diff --git a/packages/E2ETest/app.json b/packages/E2ETest/app.json
new file mode 100644
index 00000000000..a4f07a51199
--- /dev/null
+++ b/packages/E2ETest/app.json
@@ -0,0 +1,4 @@
+{
+  "name": "ReactUWPTestApp",
+  "displayName": "ReactUWPTestApp"
+}
\ No newline at end of file
diff --git a/packages/E2ETest/app/Consts.ts b/packages/E2ETest/app/Consts.ts
new file mode 100644
index 00000000000..d9c8046d5af
--- /dev/null
+++ b/packages/E2ETest/app/Consts.ts
@@ -0,0 +1,21 @@
+export const APP_NAME = 'ReactUWPTestApp';
+
+// Framework
+export const SEARCH_BUTTON = 'SearchButton';
+export const HOME_BUTTON = '_HomeButton';
+export const REACT_CONTROL_ERROR_TEST_ID = 'ReactControlErrorMessage';
+
+// UnknownTestPage
+export const UNKNOWN_TESTPAGE = 'UnknownTestPage';
+
+// TextInputTestPage
+export const TEXTINPUT_TESTPAGE = 'TextInputTestPage';
+
+export const TEXTINPUT_ON_TEXTINPUT = 'TextInput';
+
+// LoginTestPage
+export const LOGIN_TESTPAGE = 'LoginTestPage';
+export const USERNAME_ON_LOGIN = 'UserName';
+export const PASSWORD_ON_LOGIN = 'Password';
+export const SUBMIT_ON_LOGIN = 'Submit';
+export const LOGINRESULT_ON_LOGIN = 'Result';
diff --git a/packages/E2ETest/app/LoginTestPage.tsx b/packages/E2ETest/app/LoginTestPage.tsx
new file mode 100644
index 00000000000..7efa848b9f4
--- /dev/null
+++ b/packages/E2ETest/app/LoginTestPage.tsx
@@ -0,0 +1,65 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ */
+
+import React, { useState } from 'react';
+import { Text, TextInput, View, StyleSheet, TouchableOpacity } from 'react-native';
+import { USERNAME_ON_LOGIN, PASSWORD_ON_LOGIN, SUBMIT_ON_LOGIN, LOGINRESULT_ON_LOGIN } from './Consts';
+
+const styles = StyleSheet.create({
+  container: {
+    padding: 20
+  },
+  input: {
+    height: 40,
+    backgroundColor: 'rgba(225,225,225,0.2)',
+    marginBottom: 10,
+    padding: 10,
+    color: '#fff'
+  },
+  buttonContainer: {
+    backgroundColor: '#2980b6',
+    paddingVertical: 15
+  },
+  buttonText: {
+    color: '#fff',
+    textAlign: 'center',
+    fontWeight: '700'
+  }
+});
+
+export function LoginTestPage() {
+  const [loginState, setLoginState] = useState('');
+  const [userName, setUserName] = useState('');
+
+  const onPress = () => {
+    if (userName === 'username') {
+      setLoginState('Success')
+    } else {
+      setLoginState('Fail');
+    }
+  };
+  return (
+    
+       { setUserName(text.nativeEvent.text) }} />
+
+      
+
+      
+        LOGIN
+      
+
+      {loginState}
+    );
+}
\ No newline at end of file
diff --git a/packages/E2ETest/app/TestApp.tsx b/packages/E2ETest/app/TestApp.tsx
new file mode 100644
index 00000000000..7dcbd59f15e
--- /dev/null
+++ b/packages/E2ETest/app/TestApp.tsx
@@ -0,0 +1,109 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ */
+
+import React, { useState } from "react";
+import TestPages, { ITestPage } from './TestPages'
+import { TouchableOpacity, Text, View, TextInput, FlatList, Button, StyleSheet } from 'react-native'
+import { SEARCH_BUTTON, HOME_BUTTON } from './Consts'
+
+
+interface TestPageListProps {
+  onNavigateTo: (pageTestId: string) => void,
+  testPages: ITestPage[]
+}
+
+function TestPageList(props: TestPageListProps) {
+  const [filter, setFilter] = useState("");
+
+  const _renderItem = ({ item }: {item: ITestPage}) => (
+     { props.onNavigateTo(item.testId) }} testID={item.testId}>
+      
+        {item.description}
+      
+    
+  );
+
+  const data = props.testPages.filter((item: ITestPage) => !filter || (item.testId && item.testId.includes(filter)) || (item.description && item.description.includes(filter)))
+
+  return (
+    
+       setFilter(text)} value={filter} testID={SEARCH_BUTTON} />
+       data={data} renderItem={_renderItem} keyExtractor={(item) => item.testId}/>
+    )
+}
+
+interface TestPageDetailProps {
+  testPage: ITestPage
+}
+
+function TestPageDetail(props: TestPageDetailProps) {
+  return 
+}
+
+interface HeaderProps {
+  onNavigateTo: (pageTestId: string) => void,
+  description: string
+}
+
+function Header(props: HeaderProps) {
+  return (
+    
+      
+        
+          {props.description}
+        
+        
+    );
+}
+
+const styles = StyleSheet.create({
+  headerContainer: {
+    borderBottomWidth: StyleSheet.hairlineWidth,
+    borderBottomColor: '#96969A',
+  },
+  header: {
+    height: 40,
+    flexDirection: 'row'
+  },
+  headerLeft: {},
+  headerCenter: {
+    flex: 1,
+    position: 'absolute',
+    top: 7,
+    left: 0,
+    right: 0
+  },
+  title: {
+    fontSize: 19,
+    fontWeight: '600',
+    textAlign: 'center'
+  },
+  testPageContainer: {
+    flex: 1
+  }
+});
+
+
+export default function TestApp() {
+  const [toPageTestId, setToPageTestId] = useState("");
+
+  const _onNavigateTo = (pageTestId: string) => { setToPageTestId(pageTestId) };
+
+  if (toPageTestId.length > 0) {
+    const page = TestPages.filter(testPage => testPage.testId === toPageTestId)[0];
+    return (
+      
+         { _onNavigateTo('') }} description={page.description} />
+        
+      )
+  } else {
+    return (
+      
+         { }} description='Home' />
+         { _onNavigateTo(testPageId) }} />
+      )
+  }
+}
\ No newline at end of file
diff --git a/packages/E2ETest/app/TestPages.ts b/packages/E2ETest/app/TestPages.ts
new file mode 100644
index 00000000000..7e27cc46b64
--- /dev/null
+++ b/packages/E2ETest/app/TestPages.ts
@@ -0,0 +1,36 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ */
+
+import * as React from 'react';
+import { TextInputTestPage } from './TextInputTestPage';
+import { UnknownPage } from './UnknownPage';
+import { TEXTINPUT_TESTPAGE, UNKNOWN_TESTPAGE, LOGIN_TESTPAGE } from './Consts';
+import { LoginTestPage } from './LoginTestPage';
+
+export interface ITestPage {
+  testId: string;
+  description: string;
+  content: React.FC | typeof React.Component;
+}
+
+const TestPages: ITestPage[] = [
+  {
+    testId: TEXTINPUT_TESTPAGE,
+    description: 'TextInput Test Page',
+    content: TextInputTestPage,
+  },
+  {
+    testId: LOGIN_TESTPAGE,
+    description: 'Login Test Page',
+    content: LoginTestPage,
+  },
+  {
+    testId: UNKNOWN_TESTPAGE,
+    description: 'Unknown Page',
+    content: UnknownPage,
+  },
+];
+
+export default TestPages;
diff --git a/packages/E2ETest/app/TextInputTestPage.tsx b/packages/E2ETest/app/TextInputTestPage.tsx
new file mode 100644
index 00000000000..f6ab0012a0e
--- /dev/null
+++ b/packages/E2ETest/app/TextInputTestPage.tsx
@@ -0,0 +1,79 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ * @format
+ */
+
+import React from 'react';
+import {Text, TextInput, View} from 'react-native';
+import {TEXTINPUT_ON_TEXTINPUT} from './Consts';
+
+interface ITextInputTestPageState {
+  curText: string;
+  prevText: string;
+  prev2Text: string;
+  prev3Text: string;
+}
+
+export class TextInputTestPage extends React.Component<
+  {},
+  ITextInputTestPageState
+> {
+  public state = {
+    curText: '',
+    prevText: '',
+    prev2Text: '',
+    prev3Text: '',
+  };
+
+  public updateText = (text: string) => {
+    this.setState(state => {
+      return {
+        curText: text,
+        prevText: state.curText,
+        prev2Text: state.prevText,
+        prev3Text: state.prev2Text,
+      };
+    });
+  };
+
+  public render() {
+    return (
+      
+         this.updateText('onFocus')}
+          onBlur={() => this.updateText('onBlur')}
+          onChange={event =>
+            this.updateText('onChange text: ' + event.nativeEvent.text)
+          }
+          onEndEditing={event =>
+            this.updateText('onEndEditing text: ' + event.nativeEvent.text)
+          }
+          onSubmitEditing={event =>
+            this.updateText('onSubmitEditing text: ' + event.nativeEvent.text)
+          }
+          onSelectionChange={event => {
+            this.updateText(
+              'onSelectionChange range: ' +
+                event.nativeEvent.selection.start +
+                ',' +
+                event.nativeEvent.selection.end,
+            );
+          }}
+          onKeyPress={event => {
+            this.updateText('onKeyPress key: ' + event.nativeEvent.key);
+          }}
+        />
+        
+          curText: {this.state.curText}
+          prev: {this.state.prevText}
+          prev2: {this.state.prev2Text})
+          prev3: {this.state.prev3Text}
+        
+      
+    );
+  }
+}
diff --git a/packages/E2ETest/app/UnknownPage.tsx b/packages/E2ETest/app/UnknownPage.tsx
new file mode 100644
index 00000000000..8b224ba9745
--- /dev/null
+++ b/packages/E2ETest/app/UnknownPage.tsx
@@ -0,0 +1,11 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ */
+
+import {Text} from 'react-native'
+import React from 'react';
+
+export function UnknownPage() {
+  return (Unknown)
+}
\ No newline at end of file
diff --git a/packages/E2ETest/app/index.ts b/packages/E2ETest/app/index.ts
new file mode 100644
index 00000000000..3bf87ee83ad
--- /dev/null
+++ b/packages/E2ETest/app/index.ts
@@ -0,0 +1,5 @@
+import TestApp from './TestApp';
+import { AppRegistry } from 'react-native';
+import { APP_NAME } from './Consts';
+
+AppRegistry.registerComponent(APP_NAME, () => TestApp);
diff --git a/packages/E2ETest/hasteImpl.js b/packages/E2ETest/hasteImpl.js
new file mode 100644
index 00000000000..629dfcebbb2
--- /dev/null
+++ b/packages/E2ETest/hasteImpl.js
@@ -0,0 +1,89 @@
+/**
+ * Custom haste impl needed to deal with the yarn workspace
+ *
+ * This should be able to be removed once we move to RN 0.60, and haste goes away
+ *
+ * @format
+ * @flow
+ */
+
+'use strict';
+const path = require('path');
+const fs = require('fs');
+
+const rnPath = fs.realpathSync(
+  path.resolve(require.resolve('react-native/package.json'), '..'),
+);
+const rnwPath = fs.realpathSync(
+  path.resolve(require.resolve('react-native-windows/package.json'), '..'),
+);
+const ROOTS = [rnwPath + path.sep, rnPath + path.sep];
+
+const BLACKLISTED_PATTERNS /*: Array */ = [
+  /.*[\\\/]__(mocks|tests)__[\\\/].*/,
+  /^Libraries[\\\/]Animated[\\\/]src[\\\/]polyfills[\\\/].*/,
+  /^lib[\\/]Libraries[\\\/]Animated[\\\/]src[\\\/]polyfills[\\\/].*/,
+  /^Libraries[\\\/]Renderer[\\\/]fb[\\\/].*/,
+  /^lib[\\/]Libraries[\\\/]Renderer[\\\/]fb[\\\/].*/,
+  /^wdio[\\/]*/,
+  /^windows[\\/]*/,
+];
+
+const WHITELISTED_PREFIXES /*: Array */ = [
+  'IntegrationTests',
+  'Libraries',
+  'ReactAndroid',
+  'RNTester',
+];
+
+const NAME_REDUCERS /*: Array<[RegExp, string]> */ = [
+  // extract basename
+  [/^(?:.*[\\\/])?([a-zA-Z0-9$_.-]+)$/, '$1'],
+  // strip .js/.js.flow suffix
+  [/^(.*)\.js(\.flow)?$/, '$1'],
+  // strip platform suffix
+  [/^(.*)\.(android|ios|native|windesktop|windows|macos|win32)$/, '$1'],
+];
+
+const haste = {
+  /*
+   * @return {string|void} hasteName for module at filePath; or undefined if
+   *                       filePath is not a haste module
+   */
+  getHasteName(
+    filePath /*: string */,
+    sourceCode /*: ?string */,
+  ) /*: string | void */ {
+    if (!isHastePath(filePath)) {
+      return undefined;
+    }
+
+    const hasteName = NAME_REDUCERS.reduce(
+      (name, [pattern, replacement]) => name.replace(pattern, replacement),
+      filePath,
+    );
+
+    return hasteName;
+  },
+};
+
+function isHastePath(filePath /*: string */) /*: boolean */ {
+  if (!filePath.endsWith('.js') && !filePath.endsWith('.js.flow')) {
+    return false;
+  }
+
+  const root = ROOTS.find(r => filePath.startsWith(r));
+  if (!root) {
+    return false;
+  }
+
+  filePath = filePath.substr(root.length);
+
+  if (BLACKLISTED_PATTERNS.some(pattern => pattern.test(filePath))) {
+    return false;
+  }
+
+  return WHITELISTED_PREFIXES.some(prefix => filePath.startsWith(prefix));
+}
+
+module.exports = haste;
diff --git a/packages/E2ETest/just-task.js b/packages/E2ETest/just-task.js
new file mode 100644
index 00000000000..b01918ce9fc
--- /dev/null
+++ b/packages/E2ETest/just-task.js
@@ -0,0 +1,39 @@
+/**
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License.
+ * @format
+ * @ts-check
+ */
+
+const path = require('path');
+const {
+  task,
+  series,
+  option,
+  argv,
+  tscTask,
+  eslintTask,
+} = require('just-scripts');
+const libPath = path.resolve(process.cwd(), 'lib');
+const srcPath = path.resolve(process.cwd(), 'src');
+
+option('production');
+option('clean');
+
+task('eslint', () => {
+  return eslintTask();
+});
+task('ts', () => {
+  return tscTask({
+    pretty: true,
+    noEmit: true,
+    ...(argv().production && {
+      inlineSources: true,
+      sourceRoot: path.relative(libPath, srcPath),
+    }),
+    target: 'es6',
+    module: 'commonjs',
+  });
+});
+
+task('build', series('eslint', 'ts'));
diff --git a/packages/E2ETest/metro.config.js b/packages/E2ETest/metro.config.js
new file mode 100644
index 00000000000..093379af761
--- /dev/null
+++ b/packages/E2ETest/metro.config.js
@@ -0,0 +1,70 @@
+/**
+ * Metro configuration for React Native
+ * https://github.com/facebook/react-native
+ *
+ * @format
+ */
+const fs = require('fs');
+const path = require('path');
+const blacklist = require('metro-config/src/defaults/blacklist');
+
+const rnPath = fs.realpathSync(
+  path.resolve(require.resolve('react-native/package.json'), '..'),
+);
+const rnwPath = path.resolve(__dirname, '../../vnext');
+const rnwePath = path.resolve(__dirname, '../react-native-windows-extended');
+
+module.exports = {
+  // WatchFolders is only needed due to the yarn workspace layout of node_modules, we need to watch the symlinked locations separately
+  watchFolders: [
+    // Include hoisted modules
+    path.resolve(__dirname, '../..', 'node_modules'),
+    // Include react-native
+    rnPath,
+    // Include react-native-windows
+    rnwPath,
+    // Include react-native-windows-extended
+    rnwePath,
+  ],
+
+  resolver: {
+    extraNodeModules: {
+      // Redirect metro to rnwPath instead of node_modules/react-native-windows, since metro doesn't like symlinks
+      'react-native': rnPath,
+      'react-native-windows': rnwPath,
+      'react-native-windows-extended': rnwePath,
+    },
+    // Include the macos platform in addition to the defaults because the fork includes macos, but doesn't declare it
+    platforms: ['ios', 'android', 'windesktop', 'windows', 'web', 'macos'],
+    providesModuleNodeModules: ['react-native', 'react-native-windows'],
+    // Since there are multiple copies of react-native, we need to ensure that metro only sees one of them
+    // This should go away after RN 0.60 when haste is removed
+    blacklistRE: blacklist([
+      new RegExp(
+        `${path
+          .resolve(rnwPath, 'node_modules/react-native')
+          .replace(/[/\\\\]/g, '[/\\\\]')}.*`,
+      ),
+      new RegExp(
+        `${path
+          .resolve(rnwePath, 'node_modules/react-native')
+          .replace(/[/\\\\]/g, '[/\\\\]')}.*`,
+      ),
+      // This stops "react-native run-windows" from causing the metro server to crash if its already running
+      new RegExp(
+        `${path
+          .resolve(__dirname, 'windows')
+          .replace(/[/\\\\]/g, '[/\\\\]')}.*`,
+      ),
+    ]),
+    hasteImplModulePath: path.resolve(__dirname, 'hasteImpl.js'),
+  },
+  transformer: {
+    getTransformOptions: async () => ({
+      transform: {
+        experimentalImportSupport: false,
+        inlineRequires: false,
+      },
+    }),
+  },
+};
diff --git a/packages/E2ETest/package.json b/packages/E2ETest/package.json
new file mode 100644
index 00000000000..370007a6681
--- /dev/null
+++ b/packages/E2ETest/package.json
@@ -0,0 +1,51 @@
+{
+  "name": "e2etest",
+  "version": "0.0.1",
+  "private": true,
+  "scripts": {
+    "build": "just-scripts build",
+    "clean": "just-scripts clean",
+    "postinstall": "node postinstall.js",
+    "start": "react-native start",
+    "lint": "just-scripts eslint",
+    "lint:fix": "eslint ./**/*.js ./**/*.ts? --fix",
+    "watch": "tsc -w",
+    "prettier": "prettier --write --loglevel warn \"**/**/*.ts\"",
+    "test": "rimraf reports/* && npm run prettier && wdio",
+    "dev": "npm run prettier && wdio --spec"
+  },
+  "dependencies": {
+    "react": "16.8.3",
+    "react-native": "https://github.com/microsoft/react-native/archive/v0.59.0-microsoft.69.tar.gz",
+    "react-native-windows": "0.59.0-vnext.159",
+    "react-native-windows-extended": "0.14.5",
+    "rnpm-plugin-windows": "^0.2.11"
+  },
+  "devDependencies": {
+    "@babel/core": "7.5.5",
+    "@babel/runtime": "7.5.5",
+    "@types/react": "16.8.15",
+    "@types/react-native": "~0.57.51",
+    "@wdio/appium-service": "^5.12.1",
+    "@types/chai": "^4.1.7",
+    "@types/mocha": "^5.2.7",
+    "@types/node": "^10.14.8",
+    "@wdio/cli": "^5.10.1",
+    "@wdio/local-runner": "^5.10.1",
+    "@wdio/mocha-framework": "^5.10.1",
+    "@wdio/junit-reporter": "^5.12.1",
+    "@wdio/sync": "^5.10.1",
+    "@wdio/dot-reporter": "5.11.7",
+    "chai": "^4.2.0",
+    "prettier": "^1.18.2",
+    "ts-node": "^7.0.1",
+    "tsconfig-paths": "^3.8.0",
+    "typescript": "^3.5.1",
+    "webdriverio": "^5.10.1",
+    "webdriver": "git+https://github.com/react-native-windows/webdriver.git",
+    "appium": "1.14.1",
+    "rimraf": "3.0.0",
+    "metro-react-native-babel-preset": "0.55.0",
+    "react-test-renderer": "16.8.3"
+  }
+}
diff --git a/packages/E2ETest/packages.config b/packages/E2ETest/packages.config
new file mode 100644
index 00000000000..cdb7bb377d4
--- /dev/null
+++ b/packages/E2ETest/packages.config
@@ -0,0 +1,4 @@
+
+
+  
+
\ No newline at end of file
diff --git a/packages/E2ETest/postinstall.js b/packages/E2ETest/postinstall.js
new file mode 100644
index 00000000000..ea656da5b18
--- /dev/null
+++ b/packages/E2ETest/postinstall.js
@@ -0,0 +1,42 @@
+/**
+ * The react-native cli getPlugins assumes that all the react-native platform packages
+ * are located in node_modules.
+ *
+ * When in a yarn workspace, the react-native platforms can be hoisted, so we need to
+ * add a link to the real location so that getPlugins works correctly.
+ *
+ * @format
+ *
+ */
+// @ts-check
+
+const fs = require('fs');
+const path = require('path');
+const os = require('os');
+
+const checkOrCreate_node_modules = () => {
+  const p = path.join(__dirname, 'node_modules');
+
+  if (!fs.existsSync(p)) {
+    fs.mkdirSync(p);
+  }
+};
+checkOrCreate_node_modules();
+
+const link = (name, target) => {
+  const p = path.join(__dirname, 'node_modules', name);
+
+  if (!fs.existsSync(p)) {
+    fs.symlinkSync(target, p, os.platform() === 'win32' ? 'junction' : 'dir');
+  }
+};
+
+link('react-native-windows', path.resolve(__dirname, '../../vnext'));
+link(
+  'react-native',
+  path.resolve(require.resolve('react-native/package.json'), '..'),
+);
+link(
+  'rnpm-plugin-windows',
+  path.resolve(require.resolve('rnpm-plugin-windows/package.json'), '..'),
+);
diff --git a/packages/E2ETest/reports/appium.txt b/packages/E2ETest/reports/appium.txt
new file mode 100644
index 00000000000..e2272b8e8a2
--- /dev/null
+++ b/packages/E2ETest/reports/appium.txt
@@ -0,0 +1,1840 @@
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m
+[35m[HTTP][39m [90m{"capabilities":{"alwaysMatch":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},"firstMatch":[{}]},"desiredCapabilities":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true}}[39m
+[debug] [35m[W3C][39m Calling AppiumDriver.createSession() with args: [{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},null,{"alwaysMatch":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},"firstMatch":[{}]}]
+[debug] [35m[BaseDriver][39m Event 'newSessionRequested' logged at 1567033255565 (16:00:55 GMT-0700 (Pacific Daylight Time))
+[35m[BaseDriver][39m The capabilities ["deviceName","app"] are not standard capabilities and should have an extension prefix
+[35m[Appium][39m Appium v1.14.1 creating new WindowsDriver (v1.6.0) session
+[35m[Appium][39m Capabilities:
+[35m[Appium][39m   platformName: windows
+[35m[Appium][39m   deviceName: WindowsPC
+[35m[Appium][39m   app: ReactUWPTestApp_2wtq0zq3ec38a!App
+[35m[Appium][39m   winAppDriver:experimental-w3c: true
+[debug] [35m[BaseDriver][39m Creating session with MJSONWP desired capabilities: {
+[debug] [35m[BaseDriver][39m   "platformName": "windows",
+[debug] [35m[BaseDriver][39m   "deviceName": "WindowsPC",
+[debug] [35m[BaseDriver][39m   "app": "ReactUWPTestApp_2wtq0zq3ec38a!App",
+[debug] [35m[BaseDriver][39m   "experimental-w3c": true
+[debug] [35m[BaseDriver][39m }
+[35m[BaseDriver][39m The following capabilities were provided, but are not recognized by Appium:
+[35m[BaseDriver][39m   app
+[35m[BaseDriver][39m   experimental-w3c
+[35m[BaseDriver][39m Session created with session id: e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[WinAppDriver][39m You must use WinAppDriver version 1.1
+[35m[WinAppDriver][39m Verifying WinAppDriver version 1.1 is installed via comparing the checksum.
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'starting'
+[35m[WinAppDriver][39m Killing any old WinAppDrivers on same port, running: FOR /F "usebackq tokens=5" %a in (`netstat -nao ^| findstr /R /C:"4724 "`) do (FOR /F "usebackq" %b in (`TASKLIST /FI "PID eq %a" ^| findstr /I winappdriver.exe`) do (IF NOT %b=="" TASKKILL /F /PID %a))
+[35m[WinAppDriver][39m No old WinAppDrivers seemed to exist
+[35m[WinAppDriver][39m Spawning winappdriver with: 4724/wd/hub
+[35m[WinAppDriver][39m [STDOUT] Windows Application Driver listening for requests at: http://127.0.0.1:4724/wd/hub
+[debug] [35m[WD Proxy][39m Proxying [GET /status] to [GET http://127.0.0.1:4724/wd/hub/status] with no body
+[35m[WinAppDriver][39m [STDOUT] Press ENTER to exit.
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/status HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 147
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[debug] [35m[WD Proxy][39m Got response with status 200: {"build":{"revision":"18001","time":"Tue Sep 18 18:35:38 2018","version":"1.1.1809"},"os":{"arch":"amd64","name":"windows","version":"10.0.18967"}}
+[debug] [35m[WD Proxy][39m Determined the downstream protocol as 'undefined'
+[35m[WinAppDriver][39m Status call returned 200. we're online and ready to run tests
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'online'
+[debug] [35m[WD Proxy][39m Matched '/session' to command name 'createSession'
+[debug] [35m[WD Proxy][39m Proxying [POST /session] to [POST http://127.0.0.1:4724/wd/hub/session] with body: {"desiredCapabilities":{"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 141
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"desiredCapabilities":{"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 140
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"app":"ReactUWPTestApp_2wtq0zq3ec38a!App","platformName":"windows"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"app":"ReactUWPTestApp_2wtq0zq3ec38a!App","platformName":"windows"}}
+[debug] [35m[WD Proxy][39m Determined the downstream protocol as 'MJSONWP'
+[35m[Appium][39m New WindowsDriver session created successfully, session e0a52b64-314e-4d39-8ede-74fae06ffb15 added to master session list
+[debug] [35m[BaseDriver][39m Event 'newSessionStarted' logged at 1567033273856 (16:01:13 GMT-0700 (Pacific Daylight Time))
+[debug] [35m[MJSONWP (e0a52b64)][39m Cached the protocol value 'MJSONWP' for the new session e0a52b64-314e-4d39-8ede-74fae06ffb15
+[debug] [35m[MJSONWP (e0a52b64)][39m Responding to client with driver.createSession() result: {"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}
+[35m[HTTP][39m [37m<-- POST /wd/hub/session [39m[32m200[39m [90m18300 ms - 189[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m118 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/click] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/click [39m[32m200[39m [90m343 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[31m500[39m [90m181 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[31m500[39m [90m185 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m95 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed [39m[32m200[39m [90m13 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInputTestPage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 56
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.11"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.11"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m130 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.11/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.11/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.11/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.11/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.11/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.11/displayed [39m[32m200[39m [90m22 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"LoginTestPage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"LoginTestPage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 52
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.17"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.17"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m171 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.17/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.17/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.17/click] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.17/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.17/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.17/click [39m[32m200[39m [90m316 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[31m500[39m [90m222 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (e0a52b64)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[31m500[39m [90m210 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m144 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.4/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.4/displayed [39m[32m200[39m [90m21 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"UserName"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"UserName"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 47
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"UserName"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m132 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/displayed [39m[32m200[39m [90m28 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"UserName"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"UserName"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 47
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m87 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear [39m[32m200[39m [90m60 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value[39m
+[35m[HTTP][39m [90m{"text":"username","value":["u","s","e","r","n","a","m","e"]}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/value] with body: {"text":"username","value":["u","s","e","r","n","a","m","e"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 61
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"username","value":["u","s","e","r","n","a","m","e"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value [39m[32m200[39m [90m549 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Password"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Password"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 47
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"Password"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.30"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.30"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m107 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear [39m[32m200[39m [90m17 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value[39m
+[35m[HTTP][39m [90m{"text":"password","value":["p","a","s","s","w","o","r","d"]}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/value] with body: {"text":"password","value":["p","a","s","s","w","o","r","d"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 61
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"password","value":["p","a","s","s","w","o","r","d"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value [39m[32m200[39m [90m530 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Submit"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Submit"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 45
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"Submit"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.34"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.34"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m131 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.34/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.34/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click [39m[32m200[39m [90m303 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Result"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Result"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 45
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"Result"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.36"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.36"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m132 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text' to command name 'getText'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.36/text] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.36/text HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 81
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":"Success"}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":"Success"}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text [39m[32m200[39m [90m30 ms - 81[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"UserName"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"UserName"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 47
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"UserName"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m125 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/clear [39m[32m200[39m [90m32 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value[39m
+[35m[HTTP][39m [90m{"text":"username@microsoft.com","value":["u","s","e","r","n","a","m","e","@","m","i","c","r","o","s","o","f","t",".","c","o","m"]}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/value] with body: {"text":"username@microsoft.com","value":["u","s","e","r","n","a","m","e","@","m","i","c","r","o","s","o","f","t",".","c","o","m"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.26/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 131
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"username@microsoft.com","value":["u","s","e","r","n","a","m","e","@","m","i","c","r","o","s","o","f","t",".","c","o","m"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.26/value [39m[32m200[39m [90m1384 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Password"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Password"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 47
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.30"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.30"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m144 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/clear [39m[32m200[39m [90m34 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value[39m
+[35m[HTTP][39m [90m{"text":"password","value":["p","a","s","s","w","o","r","d"]}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/value] with body: {"text":"password","value":["p","a","s","s","w","o","r","d"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.30/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 61
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"password","value":["p","a","s","s","w","o","r","d"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.30/value [39m[32m200[39m [90m529 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Submit"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Submit"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 45
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.34"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.34"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m152 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.34/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.34/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.34/click [39m[32m200[39m [90m842 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"Result"}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element] to [POST http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element] with body: {"using":"accessibility id","value":"Result"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 45
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"Result"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.36"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":{"ELEMENT":"42.595584.4.36"}}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element [39m[32m200[39m [90m159 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (e0a52b64)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text' to command name 'getText'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text] to [GET http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.36/text] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A/element/42.595584.4.36/text HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 78
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":"Fail"}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"66EC7D7D-1ADA-4169-A9D9-77C12186654A","status":0,"value":"Fail"}
+[35m[WD Proxy][39m Replacing sessionId 66EC7D7D-1ADA-4169-A9D9-77C12186654A with e0a52b64-314e-4d39-8ede-74fae06ffb15
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15/element/42.595584.4.36/text [39m[32m200[39m [90m25 ms - 78[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mDELETE[39m [37m/wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15[39m
+[35m[HTTP][39m [90m{}[39m
+[debug] [35m[MJSONWP (e0a52b64)][39m Calling AppiumDriver.deleteSession() with args: ["e0a52b64-314e-4d39-8ede-74fae06ffb15"]
+[debug] [35m[BaseDriver][39m Event 'quitSessionRequested' logged at 1567033284375 (16:01:24 GMT-0700 (Pacific Daylight Time))
+[35m[Appium][39m Removing session e0a52b64-314e-4d39-8ede-74fae06ffb15 from our master session list
+[debug] [35m[WinAppDriver][39m Deleting WinAppDriver session
+[debug] [35m[WinAppDriver][39m Deleting WinAppDriver server session
+[debug] [35m[WD Proxy][39m Matched '/' to command name 'deleteSession'
+[debug] [35m[WD Proxy][39m Proxying [DELETE /] to [DELETE http://127.0.0.1:4724/wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A] with no body
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] DELETE /wd/hub/session/66EC7D7D-1ADA-4169-A9D9-77C12186654A HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 0
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 12
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"status":0}
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'stopping'
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'stopped'
+[debug] [35m[BaseDriver][39m Event 'quitSessionFinished' logged at 1567033284480 (16:01:24 GMT-0700 (Pacific Daylight Time))
+[debug] [35m[MJSONWP (e0a52b64)][39m Received response: null
+[debug] [35m[MJSONWP (e0a52b64)][39m But deleting session, so not returning
+[debug] [35m[MJSONWP (e0a52b64)][39m Responding to client with driver.deleteSession() result: null
+[35m[HTTP][39m [37m<-- DELETE /wd/hub/session/e0a52b64-314e-4d39-8ede-74fae06ffb15 [39m[32m200[39m [90m106 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m
+[35m[HTTP][39m [90m{"capabilities":{"alwaysMatch":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},"firstMatch":[{}]},"desiredCapabilities":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true}}[39m
+[debug] [35m[W3C][39m Calling AppiumDriver.createSession() with args: [{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},null,{"alwaysMatch":{"platformName":"windows","appium:deviceName":"WindowsPC","appium:app":"ReactUWPTestApp_2wtq0zq3ec38a!App","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","winAppDriver:experimental-w3c":true},"firstMatch":[{}]}]
+[debug] [35m[BaseDriver][39m Event 'newSessionRequested' logged at 1567033286047 (16:01:26 GMT-0700 (Pacific Daylight Time))
+[35m[BaseDriver][39m The capabilities ["deviceName","app"] are not standard capabilities and should have an extension prefix
+[35m[Appium][39m Appium v1.14.1 creating new WindowsDriver (v1.6.0) session
+[35m[Appium][39m Capabilities:
+[35m[Appium][39m   platformName: windows
+[35m[Appium][39m   deviceName: WindowsPC
+[35m[Appium][39m   app: ReactUWPTestApp_2wtq0zq3ec38a!App
+[35m[Appium][39m   winAppDriver:experimental-w3c: true
+[debug] [35m[BaseDriver][39m Creating session with MJSONWP desired capabilities: {
+[debug] [35m[BaseDriver][39m   "platformName": "windows",
+[debug] [35m[BaseDriver][39m   "deviceName": "WindowsPC",
+[debug] [35m[BaseDriver][39m   "app": "ReactUWPTestApp_2wtq0zq3ec38a!App",
+[debug] [35m[BaseDriver][39m   "experimental-w3c": true
+[debug] [35m[BaseDriver][39m }
+[35m[BaseDriver][39m The following capabilities were provided, but are not recognized by Appium:
+[35m[BaseDriver][39m   app
+[35m[BaseDriver][39m   experimental-w3c
+[35m[BaseDriver][39m Session created with session id: 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[WinAppDriver][39m You must use WinAppDriver version 1.1
+[35m[WinAppDriver][39m Verifying WinAppDriver version 1.1 is installed via comparing the checksum.
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'starting'
+[35m[WinAppDriver][39m Killing any old WinAppDrivers on same port, running: FOR /F "usebackq tokens=5" %a in (`netstat -nao ^| findstr /R /C:"4724 "`) do (FOR /F "usebackq" %b in (`TASKLIST /FI "PID eq %a" ^| findstr /I winappdriver.exe`) do (IF NOT %b=="" TASKKILL /F /PID %a))
+[35m[WinAppDriver][39m No old WinAppDrivers seemed to exist
+[35m[WinAppDriver][39m Spawning winappdriver with: 4724/wd/hub
+[35m[WinAppDriver][39m [STDOUT] Windows Application Driver listening for requests at: http://127.0.0.1:4724/wd/hub
+[debug] [35m[WD Proxy][39m Proxying [GET /status] to [GET http://127.0.0.1:4724/wd/hub/status] with no body
+[35m[WinAppDriver][39m [STDOUT] Press ENTER to exit.
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/status HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 147
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"build":{"revision":"18001","time":"Tue Sep 18 18:35:38 2018","version":"1.1.1809"},"os":{"arch":"amd64","name":"windows","version":"10.0.18967"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"build":{"revision":"18001","time":"Tue Sep 18 18:35:38 2018","version":"1.1.1809"},"os":{"arch":"amd64","name":"windows","version":"10.0.18967"}}
+[debug] [35m[WD Proxy][39m Determined the downstream protocol as 'undefined'
+[35m[WinAppDriver][39m Status call returned 200. we're online and ready to run tests
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'online'
+[debug] [35m[WD Proxy][39m Matched '/session' to command name 'createSession'
+[debug] [35m[WD Proxy][39m Proxying [POST /session] to [POST http://127.0.0.1:4724/wd/hub/session] with body: {"desiredCapabilities":{"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 141
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"desiredCapabilities":{"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 140
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"app":"ReactUWPTestApp_2wtq0zq3ec38a!App","platformName":"windows"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"app":"ReactUWPTestApp_2wtq0zq3ec38a!App","platformName":"windows"}}
+[debug] [35m[WD Proxy][39m Determined the downstream protocol as 'MJSONWP'
+[35m[Appium][39m New WindowsDriver session created successfully, session 051a1366-6778-40ce-aa44-a3cab86a19da added to master session list
+[debug] [35m[BaseDriver][39m Event 'newSessionStarted' logged at 1567033301514 (16:01:41 GMT-0700 (Pacific Daylight Time))
+[debug] [35m[MJSONWP (051a1366)][39m Cached the protocol value 'MJSONWP' for the new session 051a1366-6778-40ce-aa44-a3cab86a19da
+[debug] [35m[MJSONWP (051a1366)][39m Responding to client with driver.createSession() result: {"platformName":"windows","deviceName":"WindowsPC","app":"ReactUWPTestApp_2wtq0zq3ec38a!App","experimental-w3c":true}
+[35m[HTTP][39m [37m<-- POST /wd/hub/session [39m[32m200[39m [90m15469 ms - 189[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m90 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/click] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/click [39m[32m200[39m [90m366 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[31m500[39m [90m189 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[31m500[39m [90m160 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m73 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed [39m[32m200[39m [90m16 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInputTestPage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 56
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.11"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.11"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m141 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.11/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.11/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/displayed [39m[32m200[39m [90m15 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInputTestPage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 56
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInputTestPage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.11"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.11"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m128 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/click[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/click' to command name 'click'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/click] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.11/click] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.11/click HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.11/click [39m[32m200[39m [90m273 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[31m500[39m [90m147 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"ReactControlErrorMessage"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"ReactControlErrorMessage"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 404 Not Found
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 139
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[35m[WD Proxy][39m Got an unexpected response with status 404: {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m Encountered internal error running command: ProxyRequestError: Could not proxy command to remote server. Original error: 404 - {"status":7,"value":{"error":"no such element","message":"An element could not be located on the page using the given search parameters."}}
+[debug] [35m[MJSONWP (051a1366)][39m     at JWProxy.proxy (D:\repo\react-native-windows\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:233:13)
+[debug] [35m[W3C][39m Matched W3C error code 'no such element' to NoSuchElementError
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[31m500[39m [90m147 ms - 164[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"_HomeButton"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 50
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"_HomeButton"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 99
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.4"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m83 ms - 153[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.4/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.4/displayed [39m[32m200[39m [90m7 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInput"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 48
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m76 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/displayed[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/displayed' to command name 'elementDisplayed'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/displayed] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/displayed] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/displayed HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 76
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":true}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/displayed [39m[32m200[39m [90m22 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInput"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 48
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m89 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear [39m[32m200[39m [90m51 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value[39m
+[35m[HTTP][39m [90m{"text":"abc","value":["a","b","c"]}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/value] with body: {"text":"abc","value":["a","b","c"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 36
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"abc","value":["a","b","c"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value [39m[32m200[39m [90m242 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInput"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 48
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m105 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text' to command name 'getText'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/text] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/text HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 77
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":"abc"}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":"abc"}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text [39m[32m200[39m [90m24 ms - 77[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInput"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 48
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m88 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear' to command name 'clear'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/clear] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/clear HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 2
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/clear [39m[32m200[39m [90m29 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value[39m
+[35m[HTTP][39m [90m{"text":"def","value":["d","e","f"]}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value' to command name 'setValue'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/value] with body: {"text":"def","value":["d","e","f"]}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/value HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 36
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"text":"def","value":["d","e","f"]}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 63
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/value [39m[32m200[39m [90m234 ms - 76[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element[39m
+[35m[HTTP][39m [90m{"using":"accessibility id","value":"TextInput"}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element' to command name 'findElement'
+[debug] [35m[WD Proxy][39m Proxying [POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element] to [POST http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element] with body: {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] POST /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 48
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"using":"accessibility id","value":"TextInput"}
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 100
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":{"ELEMENT":"42.661406.4.26"}}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- POST /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element [39m[32m200[39m [90m116 ms - 155[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text[39m
+[35m[HTTP][39m [90m{}[39m
+[35m[MJSONWP (051a1366)][39m Driver proxy active, passing request on via HTTP proxy
+[debug] [35m[WD Proxy][39m Matched '/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text' to command name 'getText'
+[debug] [35m[WD Proxy][39m Proxying [GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text] to [GET http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/text] with body: {}
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] GET /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF/element/42.661406.4.26/text HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 77
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":"def"}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"sessionId":"ED1C2548-B89A-42E6-85A1-68E80D9081DF","status":0,"value":"def"}
+[35m[WD Proxy][39m Replacing sessionId ED1C2548-B89A-42E6-85A1-68E80D9081DF with 051a1366-6778-40ce-aa44-a3cab86a19da
+[35m[HTTP][39m [37m<-- GET /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da/element/42.661406.4.26/text [39m[32m200[39m [90m17 ms - 77[39m
+[35m[HTTP][39m [90m[39m
+[35m[HTTP][39m [37m-->[39m [37mDELETE[39m [37m/wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da[39m
+[35m[HTTP][39m [90m{}[39m
+[debug] [35m[MJSONWP (051a1366)][39m Calling AppiumDriver.deleteSession() with args: ["051a1366-6778-40ce-aa44-a3cab86a19da"]
+[debug] [35m[BaseDriver][39m Event 'quitSessionRequested' logged at 1567033307147 (16:01:47 GMT-0700 (Pacific Daylight Time))
+[35m[Appium][39m Removing session 051a1366-6778-40ce-aa44-a3cab86a19da from our master session list
+[debug] [35m[WinAppDriver][39m Deleting WinAppDriver session
+[debug] [35m[WinAppDriver][39m Deleting WinAppDriver server session
+[debug] [35m[WD Proxy][39m Matched '/' to command name 'deleteSession'
+[debug] [35m[WD Proxy][39m Proxying [DELETE /] to [DELETE http://127.0.0.1:4724/wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF] with no body
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] ==========================================
+[35m[WinAppDriver][39m [STDOUT] DELETE /wd/hub/session/ED1C2548-B89A-42E6-85A1-68E80D9081DF HTTP/1.1
+[35m[WinAppDriver][39m [STDOUT] Accept: application/json, */*
+[35m[WinAppDriver][39m [STDOUT] Connection: close
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 0
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json; charset=utf-8
+[35m[WinAppDriver][39m [STDOUT] Host: 127.0.0.1:4724
+[35m[WinAppDriver][39m [STDOUT] User-Agent: appium
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] HTTP/1.1 200 OK
+[35m[WinAppDriver][39m [STDOUT] Content-Length: 12
+[35m[WinAppDriver][39m [STDOUT] Content-Type: application/json
+[35m[WinAppDriver][39m [STDOUT] 
+[35m[WinAppDriver][39m [STDOUT] {"status":0}
+[debug] [35m[WD Proxy][39m Got response with status 200: {"status":0}
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'stopping'
+[debug] [35m[WinAppDriver][39m WinAppDriver changed state to 'stopped'
+[debug] [35m[BaseDriver][39m Event 'quitSessionFinished' logged at 1567033307215 (16:01:47 GMT-0700 (Pacific Daylight Time))
+[debug] [35m[MJSONWP (051a1366)][39m Received response: null
+[debug] [35m[MJSONWP (051a1366)][39m But deleting session, so not returning
+[debug] [35m[MJSONWP (051a1366)][39m Responding to client with driver.deleteSession() result: null
+[35m[HTTP][39m [37m<-- DELETE /wd/hub/session/051a1366-6778-40ce-aa44-a3cab86a19da [39m[32m200[39m [90m70 ms - 76[39m
+[35m[HTTP][39m [90m[39m
diff --git a/packages/E2ETest/tsconfig.json b/packages/E2ETest/tsconfig.json
new file mode 100644
index 00000000000..750ca256917
--- /dev/null
+++ b/packages/E2ETest/tsconfig.json
@@ -0,0 +1,32 @@
+{
+  "compilerOptions": {
+    "baseUrl": ".",
+    "target": "es6",
+    "module": "commonjs",
+    "jsx": "react",
+    "outDir": ".",
+    "declaration": true,
+    "sourceMap": true,
+    "experimentalDecorators": true,
+    "noEmitOnError": true,
+    "skipLibCheck": true,
+    "moduleResolution": "node",
+    "noUnusedLocals": true,
+    "strict": true,
+    "noEmit": true,
+    "rootDir": ".",
+    "esModuleInterop": true,
+    "types": [
+      "@wdio/sync",
+      "@wdio/mocha-framework",
+      "node",
+      "chai"
+    ]
+  },
+  "include": [
+    "app", "wdio"
+  ],
+  "exclude": [
+    "node_modules"
+  ]
+}
\ No newline at end of file
diff --git a/packages/E2ETest/wdio.conf.js b/packages/E2ETest/wdio.conf.js
new file mode 100644
index 00000000000..a1135ad1108
--- /dev/null
+++ b/packages/E2ETest/wdio.conf.js
@@ -0,0 +1,286 @@
+const baseUrl = 'https://webdriver.io';
+
+exports.config = {
+    //
+    // ====================
+    // Runner Configuration
+    // ====================
+    //
+    // WebdriverIO allows it to run your tests in arbitrary locations (e.g. locally or
+    // on a remote machine).
+    runner: 'local',
+    //
+    // =====================
+    // Server Configurations
+    // =====================
+    // Host address of the running Selenium server. This information is usually obsolete as
+    // WebdriverIO automatically connects to localhost. Also, if you are using one of the
+    // supported cloud services like Sauce Labs, Browserstack, or Testing Bot you don't
+    // need to define host and port information because WebdriverIO can figure that out
+    // according to your user and key information. However, if you are using a private Selenium
+    // backend you should define the host address, port, and path here.
+    //
+    // hostname: '172.18.5.185',
+    // port: 4444,
+    // path: '/wd/hub',
+    
+    //
+    // ==================
+    // Specify Test Files
+    // ==================
+    // Define which test specs should run. The pattern is relative to the directory
+    // from which `wdio` was called. Notice that, if you are calling `wdio` from an
+    // NPM script (see https://docs.npmjs.com/cli/run-script) then the current working
+    // directory is where your package.json resides, so `wdio` will be called from there.
+    //
+    specs: [
+        'wdio/test/**/*.ts'
+    ],
+    // Patterns to exclude.
+    exclude: [
+        // 'path/to/excluded/files'
+    ],
+    //
+    // ============
+    // Capabilities
+    // ============
+    // Define your capabilities here. WebdriverIO can run multiple capabilities at the same
+    // time. Depending on the number of capabilities, WebdriverIO launches several test
+    // sessions. Within your capabilities you can overwrite the spec and exclude options in
+    // order to group specific specs to a specific capability.
+    //
+    // First, you can define how many instances should be started at the same time. Let's
+    // say you have 3 different capabilities (Chrome, Firefox, and Safari) and you have
+    // set maxInstances to 1; wdio will spawn 3 processes. Therefore, if you have 10 spec
+    // files and you set maxInstances to 10, all spec files will get tested at the same time
+    // and 30 processes will get spawned. The property handles how many capabilities
+    // from the same test should run tests.
+    //
+    maxInstances: 1,
+    //
+    // If you have trouble getting all important capabilities together, check out the
+    // Sauce Labs platform configurator - a great tool to configure your capabilities:
+    // https://docs.saucelabs.com/reference/platforms-configurator
+    //
+    capabilities: [
+        {
+            // maxInstances can get overwritten per capability. So if you have an in-house Selenium
+            // grid with only 5 firefox instances available you can make sure that not more than
+            // 5 instances get started at a time.
+            maxInstances: 1,
+            //
+            platformName: 'windows',
+            // For W3C the appium capabilities need to have an extension prefix
+            // http://appium.io/docs/en/writing-running-appium/caps/
+            // This is `appium:` for all Appium Capabilities which can be found here
+            'appium:deviceName': 'WindowsPC',
+            'appium:app': 'ReactUWPTestApp_2wtq0zq3ec38a!App',
+            'deviceName': 'WindowsPC',
+            'app': 'ReactUWPTestApp_2wtq0zq3ec38a!App',
+            'winAppDriver:experimental-w3c': true,
+        },
+        // {
+        //     // maxInstances can get overwritten per capability. So if you have an in house Selenium
+        //     // grid with only 5 firefox instance available you can make sure that not more than
+        //     // 5 instance gets started at a time.
+        //     maxInstances: 5,
+        //     browserName: 'firefox',
+        //     // specs: [
+        //     //     'test/ffOnly/*'
+        //     // ],
+        //     "moz:firefoxOptions": {
+        //     // flag to activate Firefox headless mode (see https://github.com/mozilla/geckodriver/blob/master/README.md#firefox-capabilities for more details about moz:firefoxOptions)
+        //     // args: ['-headless']
+        //     }
+        // }
+    ],
+    //
+    // ===================
+    // Test Configurations
+    // ===================
+    // Define all options that are relevant for the WebdriverIO instance here
+    //
+    // Level of logging verbosity: trace | debug | info | warn | error
+    logLevel: 'trace',
+    //
+    // Warns when a deprecated command is used
+    deprecationWarnings: true,
+    //
+    // If you only want to run your tests until a specific amount of tests have failed use
+    // bail (default is 0 - don't bail, run all tests).
+    bail: 0,
+    //
+    // Set a base URL in order to shorten url command calls. If your `url` parameter starts
+    // with `/`, the base url gets prepended, not including the path portion of your baseUrl.
+    // If your `url` parameter starts without a scheme or `/` (like `some/path`), the base url
+    // gets prepended directly.
+    baseUrl: baseUrl,
+    //
+    // Default timeout for all waitFor* commands.
+    waitforTimeout: 10000,
+    //
+    // Default timeout in milliseconds for request
+    // if Selenium Grid doesn't send response
+    connectionRetryTimeout: 90000,
+    //
+    // Default request retries count
+    connectionRetryCount: 1,
+
+    port: 4723,
+    //
+    // Test runner services
+    // Services take over a specific job you don't want to take care of. They enhance
+    // your test setup with almost no effort. Unlike plugins, they don't add new
+    // commands. Instead, they hook themselves up into the test process.
+    services: ['appium'],
+    appium: {
+        logPath: './reports/',
+        args: {
+            port: '4723',
+        }
+    },
+
+    //
+    // Framework you want to run your specs with.
+    // The following are supported: Mocha, Jasmine, and Cucumber
+    // see also: https://webdriver.io/docs/frameworks.html
+    //
+    // Make sure you have the wdio adapter package for the specific framework installed
+    // before running any tests.
+    framework: 'mocha',
+    //
+    // Test reporter for stdout.
+    // The only one supported by default is 'dot'
+    // see also: https://webdriver.io/docs/dot-reporter.html
+    reporters: ['dot', ['junit', { outputDir : '.\\reports' }]],
+    
+    //
+    // Options to be passed to Mocha.
+    // See the full list at http://mochajs.org/
+    mochaOpts: {
+        ui: 'bdd',
+        timeout: 60000,
+        compilers: [
+            // 'ts-node/register',
+            'tsconfig-paths/register'
+        ]
+    },
+    //
+    // =====
+    // Hooks
+    // =====
+    // WebdriverIO provides several hooks you can use to interfere with the test process in order to enhance
+    // it and to build services around it. You can either apply a single function or an array of
+    // methods to it. If one of them returns with a promise, WebdriverIO will wait until that promise got
+    // resolved to continue.
+    /**
+     * Gets executed once before all workers get launched.
+     * @param {Object} config wdio configuration object
+     * @param {Array.