diff --git "a/Git\345\270\270\347\224\250.md" "b/Git\345\270\270\347\224\250.md"
new file mode 100644
index 0000000..17c54e5
--- /dev/null
+++ "b/Git\345\270\270\347\224\250.md"
@@ -0,0 +1,33 @@
+## SSH连接GitHub
+### 生成SSH key
+```bash
+$ ssh-keygen -t rsa -C "your_email@example.com"
+```
+按回车
+cat 生成的id_rsa.pub
+
+### 添加SSH到Github
+copy 到GitHub setting SSH添加
+
+### 测试这个key
+```bash
+$ ssh -T git@github.com
+```
+将会有一段警告代码,输入yes,出现successfully authenticated, but GitHub does not provide shell access.表示成功
+
+## 本地文件push到Git远程仓库
+```bash
+git init
+git add *
+git commit -m "commit"
+git remote add origin git@github.com:Username/Repositories.git //SSH
+git remote add origin https://github.com/Username/Repositories.git //Https
+git push origin master
+
+出现fatal: refusing to merge unrelated histories
+强制合并 git pull origin master --allow-unrelated-histories
+--allow-unrelated-histories , 把两段不相干的 分支进行强行合并
+
+
+```
+
diff --git a/JRE_Install&AgileDriverDownload/DownloadReport.py b/JRE_Install&AgileDriverDownload/DownloadReport.py
new file mode 100644
index 0000000..a98998c
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/DownloadReport.py
@@ -0,0 +1,83 @@
+import os
+import time
+from selenium import webdriver
+from selenium.webdriver.common.keys import Keys
+from selenium.webdriver.support.ui import WebDriverWait
+from pykeyboard import PyKeyboard
+import xml.dom.minidom
+dom = xml.dom.minidom.parse('database.xml')
+root = dom.documentElement
+itemlist = root.getElementsByTagName('login')
+item = itemlist[0]
+User=item.getAttribute("username")
+Pwd=item.getAttribute("passwd")
+
+li=list((input("input Report Name:").split(" ")))
+cwd=os.getcwd()
+path=cwd+"\\IEDriverServer.exe"
+iedriver=(path)
+os.environ["webdriver.ie.driver"] = iedriver
+browser = webdriver.Ie(iedriver)
+browser.get("https://agile.us.dell.com/Agile/default/login-cms.jsp")
+browser.find_element_by_name('j_username').clear()
+browser.find_element_by_name('j_username').send_keys(User)
+browser.find_element_by_name('j_password').clear()
+browser.find_element_by_name('j_password').send_keys(Pwd)
+browser.find_element_by_name('j_password').send_keys(Keys.ENTER)
+for SWB in li:
+ print(SWB)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=2):
+ browser.switch_to_window(browser.window_handles[1])
+ browser.implicitly_wait(10)
+ break
+ time.sleep(1)
+ WebDriverWait(browser,10,0.1).until(lambda browser:browser.find_element_by_id('selector_elm'))
+ ele=browser.find_element_by_id('selector_elm')
+ browser.execute_script('arguments[0].click()',ele)
+ ele=browser.find_element_by_xpath('//*[@id="cls_3091"]/a')
+ browser.execute_script('arguments[0].click()',ele)
+ WebDriverWait(browser,20,0.5).until(lambda browser:browser.find_element_by_name('QUICKSEARCH_STRING'))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.CONTROL + 'a')
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(str(SWB))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.ENTER)
+ time.sleep(1)
+ ele=browser.find_element_by_xpath("//a[text()='"+str(SWB)+"']")
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(10)
+ ele=browser.find_element_by_id('MSG_RptObjectExecutespan')
+ browser.execute_script('arguments[0].click()',ele)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(10)
+ break
+ time.sleep(2)
+ WebDriverWait(browser,30,0.1).until(lambda browser:browser.find_element_by_id('cmdFinishspan'))
+ ele=browser.find_element_by_id('cmdFinishspan')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(70)
+ print(browser.window_handles)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(10)
+ break
+ browser.implicitly_wait(10)
+ browser.switch_to.frame(0)
+ # WebDriverWait(browser,20,0.1).until(lambda browser:browser.find_element_by_xpath('//*[@id="exportRpt"]/span'))
+ ele=browser.find_element_by_xpath('//*[@id="exportRpt"]/span')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(1)
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.switch_to.frame(1)
+ time.sleep(1)
+ ele=browser.find_element_by_id('prompt_ok')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(8)
+ k = PyKeyboard()
+ # k.press_key(k.tab_key)
+
+ k.tap_key(k.tab_key,2)
+ k.tap_key(k.enter_key)
+
\ No newline at end of file
diff --git a/JRE_Install&AgileDriverDownload/IEDriverServer.exe b/JRE_Install&AgileDriverDownload/IEDriverServer.exe
new file mode 100644
index 0000000..100e12f
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/IEDriverServer.exe differ
diff --git a/JRE_Install&AgileDriverDownload/Readme.md b/JRE_Install&AgileDriverDownload/Readme.md
new file mode 100644
index 0000000..af4b209
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/Readme.md
@@ -0,0 +1,4 @@
+## 功能介绍:从agile上下载Driver
+## 功能实现:Python + selenium + IEDriver + Jre×86(Agile下载需调用Java)
+## 注意细节:元素定位的几种方式,等待的几种方式,窗口的切换
+### IE浏览器缩放为100% 关闭所有保护模式 关闭JAVA Security Warning
diff --git a/JRE_Install&AgileDriverDownload/Start.bat b/JRE_Install&AgileDriverDownload/Start.bat
new file mode 100644
index 0000000..0913c58
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/Start.bat
@@ -0,0 +1,34 @@
+@echo off
+>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
+if '%errorlevel%' NEQ '0' (
+goto UACPrompt
+) else ( goto gotAdmin )
+:UACPrompt
+echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
+echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
+"%temp%\getadmin.vbs"
+exit /B
+:gotAdmin
+if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
+
+
+pushd %~dp0
+set pa=%cd%
+if exist "C:\Program Files (x86)\Java\jre1.8.0_181\bin\java.exe" (
+goto start)
+:install
+reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\agile.us.dell.com\www" /v https /t REG_DWORD /d 2 /f
+cmdkey /add: 172.16.2.2 /user:User1 /pass:Us111111 >nul
+echo Please wait
+robocopy "\\172.16.2.2\Users\Johnny He" "jre-8u181*.*" c:\
+REM xcopy "\\172.16.2.2\Users\Johnny He\jre-8u181-windows-i586.exe" c:\ /s /y >nul
+echo jre installing...
+REM 静默安装JRE8 X86
+c:\jre-8u181-windows-i586.exe /s STATIC=1 WEB_JAVA=1 >nul
+REM echo open agile...
+REM start iexplore https://agile.us.dell.com/Agile/default/login-cms.jsp
+del c:\jre-8u181-windows-i586.exe
+
+:start
+
+start cmd /K "C:&&cd %pa% &&python ie_AgileDriver_selenium.py"
\ No newline at end of file
diff --git a/JRE_Install&AgileDriverDownload/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc b/JRE_Install&AgileDriverDownload/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc
new file mode 100644
index 0000000..99fb1de
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc differ
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/Analysis-00.toc b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/Analysis-00.toc
new file mode 100644
index 0000000..13a6674
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/Analysis-00.toc
@@ -0,0 +1,877 @@
+(['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py'],
+ ['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload'],
+ ['codecs'],
+ [],
+ [],
+ [],
+ False,
+ False,
+ '3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)]',
+ [('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE')],
+ [('ntpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ntpath.py',
+ 'PYMODULE'),
+ ('_strptime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_strptime.py',
+ 'PYMODULE'),
+ ('datetime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\datetime.py',
+ 'PYMODULE'),
+ ('stringprep',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stringprep.py',
+ 'PYMODULE'),
+ ('_py_abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_py_abc.py',
+ 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('typing',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\typing.py',
+ 'PYMODULE'),
+ ('__future__',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\__future__.py',
+ 'PYMODULE'),
+ ('difflib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\difflib.py',
+ 'PYMODULE'),
+ ('ast',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ast.py',
+ 'PYMODULE'),
+ ('inspect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\inspect.py',
+ 'PYMODULE'),
+ ('cmd',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\cmd.py',
+ 'PYMODULE'),
+ ('bdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bdb.py',
+ 'PYMODULE'),
+ ('opcode',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\opcode.py',
+ 'PYMODULE'),
+ ('dis',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\dis.py',
+ 'PYMODULE'),
+ ('codeop',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\codeop.py',
+ 'PYMODULE'),
+ ('code',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\code.py',
+ 'PYMODULE'),
+ ('glob',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\glob.py',
+ 'PYMODULE'),
+ ('shlex',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shlex.py',
+ 'PYMODULE'),
+ ('runpy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\runpy.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pkgutil.py',
+ 'PYMODULE'),
+ ('xml',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getpass.py',
+ 'PYMODULE'),
+ ('nturl2path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\nturl2path.py',
+ 'PYMODULE'),
+ ('ftplib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ftplib.py',
+ 'PYMODULE'),
+ ('netrc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\netrc.py',
+ 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\plistlib.py',
+ 'PYMODULE'),
+ ('platform',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\platform.py',
+ 'PYMODULE'),
+ ('token',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\token.py',
+ 'PYMODULE'),
+ ('tokenize',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tokenize.py',
+ 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tempfile.py',
+ 'PYMODULE'),
+ ('subprocess',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\subprocess.py',
+ 'PYMODULE'),
+ ('tty',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tty.py',
+ 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\__init__.py',
+ 'PYMODULE'),
+ ('ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ssl.py',
+ 'PYMODULE'),
+ ('http.client',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\mimetypes.py',
+ 'PYMODULE'),
+ ('socketserver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\__init__.py',
+ 'PYMODULE'),
+ ('http.server',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\optparse.py',
+ 'PYMODULE'),
+ ('uu',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uu.py',
+ 'PYMODULE'),
+ ('quopri',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\quopri.py',
+ 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\__init__.py',
+ 'PYMODULE'),
+ ('calendar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\calendar.py',
+ 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\base64.py',
+ 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hashlib.py',
+ 'PYMODULE'),
+ ('bisect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bisect.py',
+ 'PYMODULE'),
+ ('random',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\random.py',
+ 'PYMODULE'),
+ ('email.generator',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bz2.py',
+ 'PYMODULE'),
+ ('lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\lzma.py',
+ 'PYMODULE'),
+ ('_compression',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gzip.py',
+ 'PYMODULE'),
+ ('tarfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tarfile.py',
+ 'PYMODULE'),
+ ('py_compile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\py_compile.py',
+ 'PYMODULE'),
+ ('zipfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\zipfile.py',
+ 'PYMODULE'),
+ ('shutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shutil.py',
+ 'PYMODULE'),
+ ('selectors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\selectors.py',
+ 'PYMODULE'),
+ ('socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socket.py',
+ 'PYMODULE'),
+ ('webbrowser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\webbrowser.py',
+ 'PYMODULE'),
+ ('pydoc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc.py',
+ 'PYMODULE'),
+ ('getopt',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getopt.py',
+ 'PYMODULE'),
+ ('pdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pdb.py',
+ 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\string.py',
+ 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\threading.py',
+ 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pickle.py',
+ 'PYMODULE'),
+ ('logging',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('pprint',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pprint.py',
+ 'PYMODULE'),
+ ('contextlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\contextlib.py',
+ 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('stat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stat.py',
+ 'PYMODULE'),
+ ('genericpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\posixpath.py',
+ 'PYMODULE'),
+ ('fnmatch',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\fnmatch.py',
+ 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('signal',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\signal.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.py',
+ 'PYMODULE'),
+ ('gettext',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gettext.py',
+ 'PYMODULE'),
+ ('copy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\copy.py',
+ 'PYMODULE'),
+ ('textwrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\textwrap.py',
+ 'PYMODULE'),
+ ('argparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\argparse.py',
+ 'PYMODULE'),
+ ('doctest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\doctest.py',
+ 'PYMODULE'),
+ ('xml.dom.minidom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minidom.py',
+ 'PYMODULE'),
+ ('xml.dom.pulldom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\pulldom.py',
+ 'PYMODULE'),
+ ('xml.dom.expatbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\expatbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.NodeFilter',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\NodeFilter.py',
+ 'PYMODULE'),
+ ('xml.dom.xmlbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\xmlbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.minicompat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minicompat.py',
+ 'PYMODULE'),
+ ('xml.dom.domreg',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\domreg.py',
+ 'PYMODULE'),
+ ('xml.dom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.expected_conditions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\expected_conditions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\utils.py',
+ 'PYMODULE'),
+ ('json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\__init__.py',
+ 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5.application_cache',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\application_cache.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\utils.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.by',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\by.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.file_detector',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\file_detector.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.mobile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\mobile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.switch_to',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\switch_to.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.alert',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\alert.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.errorhandler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\errorhandler.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\remote_connection.py',
+ 'PYMODULE'),
+ ('urllib3',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.retry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\retry.py',
+ 'PYMODULE'),
+ ('urllib3.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\wait.py',
+ 'PYMODULE'),
+ ('urllib3.util.ssl_',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\ssl_.py',
+ 'PYMODULE'),
+ ('ipaddress',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ipaddress.py',
+ 'PYMODULE'),
+ ('hmac',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hmac.py',
+ 'PYMODULE'),
+ ('urllib3.util.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\response.py',
+ 'PYMODULE'),
+ ('queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\queue.py',
+ 'PYMODULE'),
+ ('urllib3.util.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\connection.py',
+ 'PYMODULE'),
+ ('urllib3.contrib._appengine_environ',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\_appengine_environ.py',
+ 'PYMODULE'),
+ ('urllib3.contrib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.six',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\six.py',
+ 'PYMODULE'),
+ ('urllib3.packages',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname._implementation',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\_implementation.py',
+ 'PYMODULE'),
+ ('urllib3.util.timeout',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\timeout.py',
+ 'PYMODULE'),
+ ('urllib3.util.url',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\url.py',
+ 'PYMODULE'),
+ ('urllib3.util.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\request.py',
+ 'PYMODULE'),
+ ('urllib3.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\response.py',
+ 'PYMODULE'),
+ ('urllib3.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connection.py',
+ 'PYMODULE'),
+ ('urllib3._collections',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\_collections.py',
+ 'PYMODULE'),
+ ('urllib3.poolmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\poolmanager.py',
+ 'PYMODULE'),
+ ('urllib3.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\request.py',
+ 'PYMODULE'),
+ ('urllib3.filepost',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\filepost.py',
+ 'PYMODULE'),
+ ('urllib3.fields',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\fields.py',
+ 'PYMODULE'),
+ ('urllib3.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\exceptions.py',
+ 'PYMODULE'),
+ ('urllib3.connectionpool',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connectionpool.py',
+ 'PYMODULE'),
+ ('urllib3.util.queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\queue.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.command',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\command.py',
+ 'PYMODULE'),
+ ('selenium.common.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\exceptions.py',
+ 'PYMODULE'),
+ ('selenium.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.ui',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\ui.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\wait.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\select.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.keys',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\keys.py',
+ 'PYMODULE'),
+ ('selenium.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.proxy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\proxy.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.touch_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\touch_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.action_chains',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\action_chains.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.action_builder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\action_builder.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.input_device',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\input_device.py',
+ 'PYMODULE'),
+ ('uuid',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uuid.py',
+ 'PYMODULE'),
+ ('ctypes.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\util.py',
+ 'PYMODULE'),
+ ('ctypes._aix',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_aix.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dyld',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dyld.py',
+ 'PYMODULE'),
+ ('ctypes.macholib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dylib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dylib.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.framework',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\framework.py',
+ 'PYMODULE'),
+ ('netbios',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\lib\\netbios.py',
+ 'PYMODULE'),
+ ('ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes._endian',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_endian.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.mouse_button',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\mouse_button.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.interaction',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\interaction.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.desired_capabilities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\desired_capabilities.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_binary',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_binary.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_profile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_profile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.extension_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\extension_connection.py',
+ 'PYMODULE'),
+ ('selenium',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\__init__.py',
+ 'PYMODULE'),
+ ('os',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\os.py',
+ 'PYMODULE')],
+ [('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY')],
+ [],
+ [],
+ [('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA')],
+ [])
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/EXE-00.toc b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/EXE-00.toc
new file mode 100644
index 0000000..efb4dde
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/EXE-00.toc
@@ -0,0 +1,114 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\dist\\ie_AgileDriver_selenium.exe',
+ True,
+ False,
+ False,
+ None,
+ None,
+ False,
+ False,
+ '',
+ True,
+ 'ie_AgileDriver_selenium.pkg',
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE'),
+ ('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA'),
+ ('ie_AgileDriver_selenium.exe.manifest',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\ie_AgileDriver_selenium.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename ie_AgileDriver_selenium.exe.manifest',
+ '',
+ 'OPTION')],
+ [],
+ False,
+ False,
+ 1557373114,
+ [('run.exe',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-32bit\\run.exe',
+ 'EXECUTABLE')])
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.pkg b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.pkg
new file mode 100644
index 0000000..e614117
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.pkg differ
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.toc b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.toc
new file mode 100644
index 0000000..4edd2ba
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PKG-00.toc
@@ -0,0 +1,107 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PKG-00.pkg',
+ {'BINARY': 1,
+ 'DATA': 1,
+ 'EXECUTABLE': 1,
+ 'EXTENSION': 1,
+ 'PYMODULE': 1,
+ 'PYSOURCE': 1,
+ 'PYZ': 0},
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE'),
+ ('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA'),
+ ('ie_AgileDriver_selenium.exe.manifest',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\ie_AgileDriver_selenium.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename ie_AgileDriver_selenium.exe.manifest',
+ '',
+ 'OPTION')],
+ False,
+ False,
+ False)
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.pyz b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.pyz
new file mode 100644
index 0000000..88c3e8d
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.pyz differ
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.toc b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.toc
new file mode 100644
index 0000000..999f67d
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/PYZ-00.toc
@@ -0,0 +1,793 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ [('ntpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ntpath.py',
+ 'PYMODULE'),
+ ('_strptime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_strptime.py',
+ 'PYMODULE'),
+ ('datetime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\datetime.py',
+ 'PYMODULE'),
+ ('stringprep',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stringprep.py',
+ 'PYMODULE'),
+ ('_py_abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_py_abc.py',
+ 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('typing',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\typing.py',
+ 'PYMODULE'),
+ ('__future__',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\__future__.py',
+ 'PYMODULE'),
+ ('difflib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\difflib.py',
+ 'PYMODULE'),
+ ('ast',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ast.py',
+ 'PYMODULE'),
+ ('inspect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\inspect.py',
+ 'PYMODULE'),
+ ('cmd',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\cmd.py',
+ 'PYMODULE'),
+ ('bdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bdb.py',
+ 'PYMODULE'),
+ ('opcode',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\opcode.py',
+ 'PYMODULE'),
+ ('dis',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\dis.py',
+ 'PYMODULE'),
+ ('codeop',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\codeop.py',
+ 'PYMODULE'),
+ ('code',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\code.py',
+ 'PYMODULE'),
+ ('glob',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\glob.py',
+ 'PYMODULE'),
+ ('shlex',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shlex.py',
+ 'PYMODULE'),
+ ('runpy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\runpy.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pkgutil.py',
+ 'PYMODULE'),
+ ('xml',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getpass.py',
+ 'PYMODULE'),
+ ('nturl2path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\nturl2path.py',
+ 'PYMODULE'),
+ ('ftplib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ftplib.py',
+ 'PYMODULE'),
+ ('netrc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\netrc.py',
+ 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\plistlib.py',
+ 'PYMODULE'),
+ ('platform',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\platform.py',
+ 'PYMODULE'),
+ ('token',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\token.py',
+ 'PYMODULE'),
+ ('tokenize',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tokenize.py',
+ 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tempfile.py',
+ 'PYMODULE'),
+ ('subprocess',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\subprocess.py',
+ 'PYMODULE'),
+ ('tty',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tty.py',
+ 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\__init__.py',
+ 'PYMODULE'),
+ ('ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ssl.py',
+ 'PYMODULE'),
+ ('http.client',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\mimetypes.py',
+ 'PYMODULE'),
+ ('socketserver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\__init__.py',
+ 'PYMODULE'),
+ ('http.server',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\optparse.py',
+ 'PYMODULE'),
+ ('uu',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uu.py',
+ 'PYMODULE'),
+ ('quopri',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\quopri.py',
+ 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\__init__.py',
+ 'PYMODULE'),
+ ('calendar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\calendar.py',
+ 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\base64.py',
+ 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hashlib.py',
+ 'PYMODULE'),
+ ('bisect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bisect.py',
+ 'PYMODULE'),
+ ('random',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\random.py',
+ 'PYMODULE'),
+ ('email.generator',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bz2.py',
+ 'PYMODULE'),
+ ('lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\lzma.py',
+ 'PYMODULE'),
+ ('_compression',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gzip.py',
+ 'PYMODULE'),
+ ('tarfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tarfile.py',
+ 'PYMODULE'),
+ ('py_compile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\py_compile.py',
+ 'PYMODULE'),
+ ('zipfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\zipfile.py',
+ 'PYMODULE'),
+ ('shutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shutil.py',
+ 'PYMODULE'),
+ ('selectors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\selectors.py',
+ 'PYMODULE'),
+ ('socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socket.py',
+ 'PYMODULE'),
+ ('webbrowser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\webbrowser.py',
+ 'PYMODULE'),
+ ('pydoc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc.py',
+ 'PYMODULE'),
+ ('getopt',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getopt.py',
+ 'PYMODULE'),
+ ('pdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pdb.py',
+ 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\string.py',
+ 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\threading.py',
+ 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pickle.py',
+ 'PYMODULE'),
+ ('logging',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('pprint',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pprint.py',
+ 'PYMODULE'),
+ ('contextlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\contextlib.py',
+ 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('stat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stat.py',
+ 'PYMODULE'),
+ ('genericpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\posixpath.py',
+ 'PYMODULE'),
+ ('fnmatch',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\fnmatch.py',
+ 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('signal',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\signal.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.py',
+ 'PYMODULE'),
+ ('gettext',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gettext.py',
+ 'PYMODULE'),
+ ('copy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\copy.py',
+ 'PYMODULE'),
+ ('textwrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\textwrap.py',
+ 'PYMODULE'),
+ ('argparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\argparse.py',
+ 'PYMODULE'),
+ ('doctest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\doctest.py',
+ 'PYMODULE'),
+ ('xml.dom.minidom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minidom.py',
+ 'PYMODULE'),
+ ('xml.dom.pulldom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\pulldom.py',
+ 'PYMODULE'),
+ ('xml.dom.expatbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\expatbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.NodeFilter',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\NodeFilter.py',
+ 'PYMODULE'),
+ ('xml.dom.xmlbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\xmlbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.minicompat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minicompat.py',
+ 'PYMODULE'),
+ ('xml.dom.domreg',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\domreg.py',
+ 'PYMODULE'),
+ ('xml.dom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.expected_conditions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\expected_conditions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\utils.py',
+ 'PYMODULE'),
+ ('json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\__init__.py',
+ 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5.application_cache',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\application_cache.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\utils.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.by',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\by.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.file_detector',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\file_detector.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.mobile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\mobile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.switch_to',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\switch_to.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.alert',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\alert.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.errorhandler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\errorhandler.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\remote_connection.py',
+ 'PYMODULE'),
+ ('urllib3',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.retry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\retry.py',
+ 'PYMODULE'),
+ ('urllib3.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\wait.py',
+ 'PYMODULE'),
+ ('urllib3.util.ssl_',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\ssl_.py',
+ 'PYMODULE'),
+ ('ipaddress',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ipaddress.py',
+ 'PYMODULE'),
+ ('hmac',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hmac.py',
+ 'PYMODULE'),
+ ('urllib3.util.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\response.py',
+ 'PYMODULE'),
+ ('queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\queue.py',
+ 'PYMODULE'),
+ ('urllib3.util.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\connection.py',
+ 'PYMODULE'),
+ ('urllib3.contrib._appengine_environ',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\_appengine_environ.py',
+ 'PYMODULE'),
+ ('urllib3.contrib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.six',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\six.py',
+ 'PYMODULE'),
+ ('urllib3.packages',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname._implementation',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\_implementation.py',
+ 'PYMODULE'),
+ ('urllib3.util.timeout',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\timeout.py',
+ 'PYMODULE'),
+ ('urllib3.util.url',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\url.py',
+ 'PYMODULE'),
+ ('urllib3.util.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\request.py',
+ 'PYMODULE'),
+ ('urllib3.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\response.py',
+ 'PYMODULE'),
+ ('urllib3.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connection.py',
+ 'PYMODULE'),
+ ('urllib3._collections',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\_collections.py',
+ 'PYMODULE'),
+ ('urllib3.poolmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\poolmanager.py',
+ 'PYMODULE'),
+ ('urllib3.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\request.py',
+ 'PYMODULE'),
+ ('urllib3.filepost',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\filepost.py',
+ 'PYMODULE'),
+ ('urllib3.fields',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\fields.py',
+ 'PYMODULE'),
+ ('urllib3.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\exceptions.py',
+ 'PYMODULE'),
+ ('urllib3.connectionpool',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connectionpool.py',
+ 'PYMODULE'),
+ ('urllib3.util.queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\queue.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.command',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\command.py',
+ 'PYMODULE'),
+ ('selenium.common.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\exceptions.py',
+ 'PYMODULE'),
+ ('selenium.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.ui',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\ui.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\wait.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\select.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.keys',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\keys.py',
+ 'PYMODULE'),
+ ('selenium.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.proxy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\proxy.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.touch_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\touch_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.action_chains',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\action_chains.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.action_builder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\action_builder.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.input_device',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\input_device.py',
+ 'PYMODULE'),
+ ('uuid',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uuid.py',
+ 'PYMODULE'),
+ ('ctypes.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\util.py',
+ 'PYMODULE'),
+ ('ctypes._aix',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_aix.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dyld',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dyld.py',
+ 'PYMODULE'),
+ ('ctypes.macholib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dylib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dylib.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.framework',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\framework.py',
+ 'PYMODULE'),
+ ('netbios',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\lib\\netbios.py',
+ 'PYMODULE'),
+ ('ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes._endian',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_endian.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.mouse_button',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\mouse_button.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.interaction',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\interaction.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.desired_capabilities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\desired_capabilities.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_binary',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_binary.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_profile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_profile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.extension_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\extension_connection.py',
+ 'PYMODULE'),
+ ('selenium',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\__init__.py',
+ 'PYMODULE'),
+ ('os',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\os.py',
+ 'PYMODULE')])
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/base_library.zip b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/base_library.zip
new file mode 100644
index 0000000..944012e
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/base_library.zip differ
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest
new file mode 100644
index 0000000..81c2fd3
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt
new file mode 100644
index 0000000..00a6fc5
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt
@@ -0,0 +1,43 @@
+
+This file lists modules PyInstaller was not able to find. This does not
+necessarily mean this module is required for running you program. Python and
+Python 3rd-party packages include a lot of conditional or optional module. For
+example the module 'ntpath' only exists on Windows, whereas the module
+'posixpath' only exists on Posix systems.
+
+Types if import:
+* top-level: imported at the top-level - look at these first
+* conditional: imported within an if-statement
+* delayed: imported from within a function
+* optional: imported within a try-except-statement
+
+IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
+ yourself tracking down the missing module. Thanks!
+
+missing module named resource - imported by posix (top-level), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named posix - imported by os (conditional, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _posixsubprocess - imported by subprocess (conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _winreg - imported by platform (delayed, optional), selenium.webdriver.firefox.firefox_binary (delayed, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _scproxy - imported by urllib.request (conditional)
+missing module named java - imported by platform (delayed), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named vms_lib - imported by platform (delayed, conditional, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named termios - imported by tty (top-level), getpass (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named grp - imported by shutil (optional), tarfile (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), http.server (delayed, optional), webbrowser (delayed), netrc (delayed, conditional), getpass (delayed), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named org - imported by copy (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named urllib2 - imported by selenium.webdriver.common.utils (delayed, optional), selenium.webdriver.common.service (delayed, optional)
+missing module named urlparse - imported by selenium.webdriver.remote.remote_connection (optional)
+runtime module named urllib3.packages.six.moves - imported by http.client (top-level), urllib3.connectionpool (top-level), urllib3.util.response (top-level), 'urllib3.packages.six.moves.urllib' (top-level), urllib3.response (top-level), urllib3.util.queue (top-level)
+missing module named StringIO - imported by selenium.webdriver.remote.webelement (optional), urllib3.packages.six (conditional)
+missing module named backports - imported by urllib3.packages.ssl_match_hostname (optional)
+missing module named "'urllib3.packages.six.moves.urllib'.parse" - imported by urllib3.request (top-level), urllib3.poolmanager (top-level)
+missing module named Queue - imported by urllib3.util.queue (conditional)
+missing module named _uuid - imported by uuid (optional)
+missing module named httplib - imported by selenium.webdriver.safari.webdriver (optional), selenium.webdriver.blackberry.webdriver (optional), selenium.webdriver.webkitgtk.webdriver (optional)
+missing module named cStringIO - imported by selenium.webdriver.firefox.firefox_profile (optional)
+missing module named copy_reg - imported by cStringIO (top-level)
diff --git a/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html
new file mode 100644
index 0000000..33c2238
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html
@@ -0,0 +1,11740 @@
+
+
+ modulegraph cross reference for ie_AgileDriver_selenium.py
+
+
+
+ modulegraph cross reference for ie_AgileDriver_selenium.py
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Queue
+
MissingModule
+
+
+
+
+
+
+
+
+
+
_abc (builtin module)
+
+
+
+
+
+
_ast (builtin module)
+
+
+
+
+
+
_bisect (builtin module)
+
+
+
+
+
+
_blake2 (builtin module)
+
+
+
+
+
+
+
+
_bz2 c:\users\test\appdata\local\programs\python\python37-32\DLLs\_bz2.pyd
+
+
+
+
+
+
_codecs (builtin module)
+
+
+
+
+
+
_codecs_cn (builtin module)
+
+
+
+
+
+
_codecs_hk (builtin module)
+
+
+
+
+
+
_codecs_iso2022 (builtin module)
+
+
+
+
+
+
_codecs_jp (builtin module)
+
+
+
+
+
+
_codecs_kr (builtin module)
+
+
+
+
+
+
_codecs_tw (builtin module)
+
+
+
+
+
+
_collections (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
_ctypes c:\users\test\appdata\local\programs\python\python37-32\DLLs\_ctypes.pyd
+
+
+
+
+
+
_datetime (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_functools (builtin module)
+
+
+
+
+
+
_hashlib c:\users\test\appdata\local\programs\python\python37-32\DLLs\_hashlib.pyd
+
+
+
+
+
+
_heapq (builtin module)
+
+
+
+
+
+
_imp (builtin module)
+
+
+
+
+
+
_io (builtin module)
+
+
+
+
+
+
_json (builtin module)
+
+
+
+
+
+
+
_locale (builtin module)
+
+
+
+
+
+
_lzma c:\users\test\appdata\local\programs\python\python37-32\DLLs\_lzma.pyd
+
+
+
+
+
+
_md5 (builtin module)
+
+
+
+
+
+
_multibytecodec (builtin module)
+
+
+
+
+
+
_opcode (builtin module)
+
+
+
+
+
+
_operator (builtin module)
+
+
+
+
+
+
_pickle (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_queue c:\users\test\appdata\local\programs\python\python37-32\DLLs\_queue.pyd
+imported by:
+
queue
+
+
+
+
+
+
+
+
_random (builtin module)
+
+
+
+
+
+
+
+
_sha1 (builtin module)
+
+
+
+
+
+
_sha256 (builtin module)
+
+
+
+
+
+
_sha3 (builtin module)
+
+
+
+
+
+
_sha512 (builtin module)
+
+
+
+
+
+
_signal (builtin module)
+
+
+
+
+
+
_socket c:\users\test\appdata\local\programs\python\python37-32\DLLs\_socket.pyd
+
+
+
+
+
+
_sre (builtin module)
+
+
+
+
+
+
+
_ssl c:\users\test\appdata\local\programs\python\python37-32\DLLs\_ssl.pyd
+
+
+
+
+
+
+
_stat (builtin module)
+
+
+
+
+
+
_string (builtin module)
+
+
+
+
+
+
+
+
_struct (builtin module)
+
+
+
+
+
+
_thread (builtin module)
+
+
+
+
+
+
+
+
_tracemalloc (builtin module)
+
+
+
+
+
+
_uuid
+
MissingModule
+
+
+
+
+
+
_warnings (builtin module)
+
+
+
+
+
+
_weakref (builtin module)
+
+
+
+
+
+
+
+
_winapi (builtin module)
+
+
+
+
+
+
+
+
abc
+
SourceModule
+
+
+
+
+
+
+
+
+
ast
+
SourceModule
+
+
+
+
+
+
+
atexit (builtin module)
+
+
+
+
+
+
+
+
base64
+
SourceModule
+
+
+
+
+
+
+
bdb
+
SourceModule
+
+
+
+
+
+
+
binascii (builtin module)
+
+
+
+
+
+
bisect
+
SourceModule
+
+
+
+
+
+
+
builtins (builtin module)
+
+
+
+
+
+
bz2
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
cmd
+
SourceModule
+
+
+
+
+
+
+
code
+
SourceModule
+
+
+
+
+
+
+
codecs
+
SourceModule
+
+
+
+
+
+
+
codeop
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
copy
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
dis
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
enum
+
SourceModule
+
+
+
+
+
+
+
errno (builtin module)
+
+
+
+
+
+
+
+
ftplib
+
SourceModule
+
+
+
+
+
+
+
+
+
gc (builtin module)
+
+
+
+
+
+
+
+
+
getopt
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
glob
+
SourceModule
+
+
+
+
+
+
+
grp
+
MissingModule
+
+
+
+
+
+
gzip
+
SourceModule
+
+
+
+
+
+
+
+
+
heapq
+
SourceModule
+
+
+
+
+
+
+
hmac
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
io
+
SourceModule
+
+
+
+
+
+
+
+
+
itertools (builtin module)
+
+
+
+
+
+
java
+
MissingModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
locale
+
SourceModule
+
+
+
+
+
+
+
+
+
lzma
+
SourceModule
+
+
+
+
+
+
+
marshal (builtin module)
+
+
+
+
+
+
math (builtin module)
+
+
+
+
+
+
+
+
msvcrt (builtin module)
+
+
+
+
+
+
+
+
netrc
+
SourceModule
+
+
+
+
+
+
+
nt (builtin module)
+
+
+
+
+
+
ntpath
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
opcode
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
org
+
MissingModule
+
+
+
+
+
+
os
+
SourceModule
+
+
+
+
+
+
+
pdb
+
SourceModule
+
+
+
+
+
+
+
pickle
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
posix
+
MissingModule
+
+
+
+
+
+
+
+
+
pprint
+
SourceModule
+
+
+
+
+
+
+
pwd
+
MissingModule
+
+
+
+
+
+
+
+
pydoc
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
pyexpat c:\users\test\appdata\local\programs\python\python37-32\DLLs\pyexpat.pyd
+
+
+
+
+
+
queue
+
SourceModule
+
+imported by:
+
queue
+
+
+
+
+
+
+
+
queue
+
AliasNode
+
+
+
+
+
+
+
quopri
+
SourceModule
+
+
+
+
+
+
+
random
+
SourceModule
+
+
+
+
+
+
+
re
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
runpy
+
SourceModule
+
+
+
+
+
+
+
select c:\users\test\appdata\local\programs\python\python37-32\DLLs\select.pyd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
shlex
+
SourceModule
+
+
+
+
+
+
+
shutil
+
SourceModule
+
+
+
+
+
+
+
signal
+
SourceModule
+
+
+
+
+
+
+
socket
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
ssl
+
SourceModule
+
+
+
+
+
+
+
stat
+
SourceModule
+
+
+
+
+
+
+
string
+
SourceModule
+
+
+
+
+
+
+
+
+
struct
+
SourceModule
+
+
+
+
+
+
+
+
+
sys (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
time (builtin module)
+
+
+
+
+
+
+
token
+
SourceModule
+imports:
+
re
+ •
sys
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
tty
+
SourceModule
+
+
+
+
+
+
+
types
+
SourceModule
+
+
+
+
+
+
+
typing
+
SourceModule
+
+
+
+
+
+
+
unicodedata c:\users\test\appdata\local\programs\python\python37-32\DLLs\unicodedata.pyd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
uu
+
SourceModule
+
+
+
+
+
+
+
uuid
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
win32wnet c:\users\test\appdata\local\programs\python\python37-32\lib\site-packages\win32\win32wnet.pyd
+
+
+
+
+
+
winreg (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
zipimport (builtin module)
+
+
+
+
+
+
+
zlib (builtin module)
+
+
+
+
+
diff --git a/JRE_Install&AgileDriverDownload/database.xml b/JRE_Install&AgileDriverDownload/database.xml
new file mode 100644
index 0000000..5f4401e
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/database.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/JRE_Install&AgileDriverDownload/dist/ie_AgileDriver_selenium.exe b/JRE_Install&AgileDriverDownload/dist/ie_AgileDriver_selenium.exe
new file mode 100644
index 0000000..1d75109
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/dist/ie_AgileDriver_selenium.exe differ
diff --git a/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.exe b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.exe
new file mode 100644
index 0000000..1d75109
Binary files /dev/null and b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.exe differ
diff --git a/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.py b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.py
new file mode 100644
index 0000000..6423148
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.py
@@ -0,0 +1,85 @@
+import os
+import time
+from selenium import webdriver
+from selenium.webdriver.common.keys import Keys
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.keys import Keys
+import xml.dom.minidom
+from pykeyboard import PyKeyboard
+dom = xml.dom.minidom.parse('database.xml')
+root = dom.documentElement
+itemlist = root.getElementsByTagName('login')
+item = itemlist[0]
+User=item.getAttribute("username")
+Pwd=item.getAttribute("passwd")
+
+li=list((input("input SWB:").split(" ")))
+cwd=os.getcwd()
+path=cwd+"\\IEDriverServer.exe"
+iedriver=(path)
+os.environ["webdriver.ie.driver"] = iedriver
+browser = webdriver.Ie(iedriver)
+browser.get("https://agile.us.dell.com/Agile/default/login-cms.jsp")
+browser.find_element_by_name('j_username').clear()
+browser.find_element_by_name('j_username').send_keys(User)
+browser.find_element_by_name('j_password').clear()
+browser.find_element_by_name('j_password').send_keys(Pwd)
+browser.find_element_by_name('j_password').send_keys(Keys.ENTER)
+for SWB in li:
+ print(SWB)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=2):
+ browser.implicitly_wait(20)
+ browser.switch_to_window(browser.window_handles[1])
+ browser.implicitly_wait(20)
+ break
+ dir="C:\\AgileDownload\\"+str(SWB)
+ os.system("md %s" %(dir))
+ browser.implicitly_wait(20)
+ browser.switch_to_window(browser.window_handles[1])
+ WebDriverWait(browser,1000,0.2).until(lambda browser:browser.find_element_by_id('selector_elm'))
+ ele=browser.find_element_by_id('selector_elm')
+ browser.execute_script('arguments[0].click()',ele)
+ ele=browser.find_element_by_xpath('//*[@id="cls_901"]/a')
+ browser.execute_script('arguments[0].click()',ele)
+ WebDriverWait(browser,1000,0.2).until(lambda browser:browser.find_element_by_name('QUICKSEARCH_STRING'))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.CONTROL + 'a')
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(str(SWB))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.ENTER)
+ # WebDriverWait(browser,300,0.5).until(lambda browser:browser.find_element_by_id('Actionsspan'))
+ browser.implicitly_wait(200)
+ WebDriverWait(browser,1000,0.2).until(lambda browser:browser.find_element_by_xpath('//*[@id="Actionsspan"]'))
+ # ele=browser.find_element_by_id('Actionsspan')
+ ele=browser.find_element_by_xpath('//*[@id="Actionsspan"]')
+ browser.execute_script('arguments[0].click()',ele)
+ WebDriverWait(browser,1000,0.2).until(lambda browser:browser.find_element_by_xpath("//a[text()='AIC_AgileAttachmentUtility']"))
+ ele=browser.find_element_by_xpath("//a[text()='AIC_AgileAttachmentUtility']")
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(20)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(20)
+ break
+ time.sleep(2)
+ WebDriverWait(browser,200,0.5).until(lambda browser:browser.find_element_by_link_text('File Download'))
+ ele=browser.find_element_by_link_text('File Download')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(10)
+ WebDriverWait(browser,600,0.5).until(lambda browser:browser.find_elements_by_css_selector('input[type=checkbox]'))
+ checkboxes = browser.find_elements_by_css_selector('input[type=checkbox]')
+ for checkbox in checkboxes:
+ browser.execute_script('arguments[0].click()',checkbox)
+ download= browser.find_elements_by_css_selector('input[type=button]')
+ browser.execute_script('arguments[0].click()',download[0])
+ for x in range(2,100):
+ if(len(browser.window_handles)>=3):
+ time.sleep(3)
+ browser.switch_to_window(browser.window_handles[-1])
+ break
+ time.sleep(60)
+ k = PyKeyboard()
+ # k.tap_key(k.right_key)
+ k.type_string(dir)
+ k.tap_key(k.enter_key)
+ time.sleep(10)
\ No newline at end of file
diff --git a/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.spec b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.spec
new file mode 100644
index 0000000..3193531
--- /dev/null
+++ b/JRE_Install&AgileDriverDownload/ie_AgileDriver_selenium.spec
@@ -0,0 +1,32 @@
+# -*- mode: python -*-
+
+block_cipher = None
+
+
+a = Analysis(['ie_AgileDriver_selenium.py'],
+ pathex=['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload'],
+ binaries=[],
+ datas=[],
+ hiddenimports=[],
+ hookspath=[],
+ runtime_hooks=[],
+ excludes=[],
+ win_no_prefer_redirects=False,
+ win_private_assemblies=False,
+ cipher=block_cipher,
+ noarchive=False)
+pyz = PYZ(a.pure, a.zipped_data,
+ cipher=block_cipher)
+exe = EXE(pyz,
+ a.scripts,
+ a.binaries,
+ a.zipfiles,
+ a.datas,
+ [],
+ name='ie_AgileDriver_selenium',
+ debug=False,
+ bootloader_ignore_signals=False,
+ strip=False,
+ upx=True,
+ runtime_tmpdir=None,
+ console=True )
diff --git a/Wechat/Readme.md b/Wechat/Readme.md
new file mode 100644
index 0000000..358a5fb
--- /dev/null
+++ b/Wechat/Readme.md
@@ -0,0 +1 @@
+## python+wxpy(itchat) 实现微信的控制
\ No newline at end of file
diff --git a/Wechat/test.py b/Wechat/test.py
new file mode 100644
index 0000000..4967e98
--- /dev/null
+++ b/Wechat/test.py
@@ -0,0 +1,10 @@
+from wxpy import *
+
+bot = Bot()
+
+@bot.register()
+def print_messages(msg):
+ print(msg)
+
+# 堵塞线程,并进入 Python 命令行
+embed()
\ No newline at end of file
diff --git a/Wechat/wechat.py b/Wechat/wechat.py
new file mode 100644
index 0000000..88c2fad
--- /dev/null
+++ b/Wechat/wechat.py
@@ -0,0 +1,28 @@
+# wechat autoreply
+from wxpy import *
+import os
+import time
+# 扫码登陆
+bot = Bot()
+# 初始化图灵机器人 (API key 申请: http://tuling123.com)
+
+# tuling = Tuling(api_key='a05e064837ec40df929370b69c8397ac')
+# 联系人
+my_friend = bot.chats()
+# for x in my_friend:
+ # print(x)
+# 自动回复所有文字消息
+# @bot.register(msg_types=TEXT)
+# def auto_reply_all(msg):
+ # tuling.do_reply(msg)
+
+@bot.register(my_friend)
+def reply_my_friend(msg):
+ # tuling.do_reply(msg)
+ print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
+ print(msg)
+ # print(tuling.reply_text(msg))
+
+# 开始运行
+embed()
+# bot.join()
diff --git a/huayu.py b/huayu.py
new file mode 100644
index 0000000..8c66da6
--- /dev/null
+++ b/huayu.py
@@ -0,0 +1,12 @@
+import os
+import random
+j=[]
+j.append("我一直想跟别人分享他的故事,但始终未果,说不上为什么,也许是这个世界太像大人太成熟。 I've always wanted to share his story, but always failed, can't say why, may be the world too much like mature adults too.")
+j.append("只恨我那是年纪太小,看不透他那小小花招背后的柔情。Only hate me that's age is too small, cannot see through his little tricks behind the tender feelings.")
+j.append("小王子:我那时什么也不懂!我应该根据她的行为,而不是根据她的话来判断她。她香气四溢,让我的生活更加芬芳多彩,我真不该离开她的...我早该猜到,在她那可笑的伎俩后面是缱绻")
+j.append("柔情啊。花朵是如此的天真无邪!可是,我毕竟是太年轻了,不知该如何去爱她。")
+j.append("这是我的一个秘密,再简单不过的秘密:一个人只有用心去看,才能看到真实。事情的真相只用眼睛是看不见的。")
+j.append("你知道的-当一个人情绪低落的时候,他会格外喜欢看日落……")
+j.append("正是你为你玫瑰花所花费的时间,才让你的玫瑰花变得如此重要。Is your roses the time it takes for you, that makes your rose so important.")
+j.append("村庄的温情不会外泄,想体会它的美丽,你不能匆匆走过。Village of warmth will not leak, wanted to experience its beauty, you can't hurried by.")
+my_msg=random.choice(j)
\ No newline at end of file
diff --git a/new agile/DownloadReport.py b/new agile/DownloadReport.py
new file mode 100644
index 0000000..864ccaf
--- /dev/null
+++ b/new agile/DownloadReport.py
@@ -0,0 +1,82 @@
+import os
+import time
+from selenium import webdriver
+from selenium.webdriver.common.keys import Keys
+from selenium.webdriver.support.ui import WebDriverWait
+from pykeyboard import PyKeyboard
+import xml.dom.minidom
+dom = xml.dom.minidom.parse('database.xml')
+root = dom.documentElement
+itemlist = root.getElementsByTagName('login')
+item = itemlist[0]
+User=item.getAttribute("username")
+Pwd=item.getAttribute("passwd")
+
+li=list((input("input Report Name:").split(" ")))
+cwd=os.getcwd()
+path=cwd+"\\IEDriverServer.exe"
+iedriver=(path)
+os.environ["webdriver.ie.driver"] = iedriver
+browser = webdriver.Ie(iedriver)
+browser.get("https://agile.us.dell.com/Agile/default/login-cms.jsp")
+browser.find_element_by_name('j_username').clear()
+browser.find_element_by_name('j_username').send_keys(User)
+browser.find_element_by_name('j_password').clear()
+browser.find_element_by_name('j_password').send_keys(Pwd)
+browser.find_element_by_name('j_password').send_keys(Keys.ENTER)
+for SWB in li:
+ print(SWB)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=2):
+ browser.switch_to_window(browser.window_handles[1])
+ browser.implicitly_wait(10)
+ break
+ time.sleep(2)
+ WebDriverWait(browser,10,0.1).until(lambda browser:browser.find_element_by_id('selector_elm'))
+ ele=browser.find_element_by_id('selector_elm')
+ browser.execute_script('arguments[0].click()',ele)
+ ele=browser.find_element_by_xpath('//*[@id="cls_3091"]/a')
+ browser.execute_script('arguments[0].click()',ele)
+ WebDriverWait(browser,20,0.5).until(lambda browser:browser.find_element_by_name('QUICKSEARCH_STRING'))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.CONTROL + 'a')
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(str(SWB))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.ENTER)
+ time.sleep(1)
+ ele=browser.find_element_by_xpath("//a[text()='"+str(SWB)+"']")
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(10)
+ ele=browser.find_element_by_id('MSG_RptObjectExecutespan')
+ browser.execute_script('arguments[0].click()',ele)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(10)
+ break
+ time.sleep(3)
+ WebDriverWait(browser,10,0.1).until(lambda browser:browser.find_element_by_id('cmdFinishspan'))
+ ele=browser.find_element_by_id('cmdFinishspan')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(60)
+ print(browser.window_handles)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(10)
+ break
+ browser.switch_to.frame(0)
+ WebDriverWait(browser,10,0.1).until(lambda browser:browser.find_element_by_xpath('//*[@id="exportRpt"]/span'))
+ ele=browser.find_element_by_xpath('//*[@id="exportRpt"]/span')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(1)
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.switch_to.frame(1)
+ time.sleep(1)
+ ele=browser.find_element_by_id('prompt_ok')
+ browser.execute_script('arguments[0].click()',ele)
+ time.sleep(10)
+ k = PyKeyboard()
+ # k.press_key(k.tab_key)
+
+ k.tap_key(k.tab_key[2])
+ k.tap_key(k.enter_key)
+
\ No newline at end of file
diff --git a/new agile/IEDriverServer.exe b/new agile/IEDriverServer.exe
new file mode 100644
index 0000000..100e12f
Binary files /dev/null and b/new agile/IEDriverServer.exe differ
diff --git a/new agile/Readme.md b/new agile/Readme.md
new file mode 100644
index 0000000..fff8a0b
--- /dev/null
+++ b/new agile/Readme.md
@@ -0,0 +1,3 @@
+## 功能介绍:从agile上下载Driver
+## 功能实现:Python + selenium + IEDriver + Jre×86(Agile下载需调用Java)
+## 注意细节:元素定位的几种方式,等待的几种方式,窗口的切换
\ No newline at end of file
diff --git a/new agile/Start.bat b/new agile/Start.bat
new file mode 100644
index 0000000..0913c58
--- /dev/null
+++ b/new agile/Start.bat
@@ -0,0 +1,34 @@
+@echo off
+>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
+if '%errorlevel%' NEQ '0' (
+goto UACPrompt
+) else ( goto gotAdmin )
+:UACPrompt
+echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
+echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
+"%temp%\getadmin.vbs"
+exit /B
+:gotAdmin
+if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
+
+
+pushd %~dp0
+set pa=%cd%
+if exist "C:\Program Files (x86)\Java\jre1.8.0_181\bin\java.exe" (
+goto start)
+:install
+reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\agile.us.dell.com\www" /v https /t REG_DWORD /d 2 /f
+cmdkey /add: 172.16.2.2 /user:User1 /pass:Us111111 >nul
+echo Please wait
+robocopy "\\172.16.2.2\Users\Johnny He" "jre-8u181*.*" c:\
+REM xcopy "\\172.16.2.2\Users\Johnny He\jre-8u181-windows-i586.exe" c:\ /s /y >nul
+echo jre installing...
+REM 静默安装JRE8 X86
+c:\jre-8u181-windows-i586.exe /s STATIC=1 WEB_JAVA=1 >nul
+REM echo open agile...
+REM start iexplore https://agile.us.dell.com/Agile/default/login-cms.jsp
+del c:\jre-8u181-windows-i586.exe
+
+:start
+
+start cmd /K "C:&&cd %pa% &&python ie_AgileDriver_selenium.py"
\ No newline at end of file
diff --git a/new agile/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc b/new agile/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc
new file mode 100644
index 0000000..99fb1de
Binary files /dev/null and b/new agile/__pycache__/ie_AgileDriver_selenium.cpython-37.pyc differ
diff --git a/new agile/build/ie_AgileDriver_selenium/Analysis-00.toc b/new agile/build/ie_AgileDriver_selenium/Analysis-00.toc
new file mode 100644
index 0000000..21623d2
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/Analysis-00.toc
@@ -0,0 +1,877 @@
+(['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py'],
+ ['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload'],
+ ['codecs'],
+ [],
+ [],
+ [],
+ False,
+ False,
+ '3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)]',
+ [('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE')],
+ [('ntpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ntpath.py',
+ 'PYMODULE'),
+ ('_strptime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_strptime.py',
+ 'PYMODULE'),
+ ('datetime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\datetime.py',
+ 'PYMODULE'),
+ ('stringprep',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stringprep.py',
+ 'PYMODULE'),
+ ('_py_abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_py_abc.py',
+ 'PYMODULE'),
+ ('typing',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\typing.py',
+ 'PYMODULE'),
+ ('fnmatch',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\fnmatch.py',
+ 'PYMODULE'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.py',
+ 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('__future__',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\__future__.py',
+ 'PYMODULE'),
+ ('difflib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\difflib.py',
+ 'PYMODULE'),
+ ('ast',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ast.py',
+ 'PYMODULE'),
+ ('inspect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\inspect.py',
+ 'PYMODULE'),
+ ('cmd',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\cmd.py',
+ 'PYMODULE'),
+ ('bdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bdb.py',
+ 'PYMODULE'),
+ ('opcode',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\opcode.py',
+ 'PYMODULE'),
+ ('dis',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\dis.py',
+ 'PYMODULE'),
+ ('codeop',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\codeop.py',
+ 'PYMODULE'),
+ ('code',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\code.py',
+ 'PYMODULE'),
+ ('glob',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\glob.py',
+ 'PYMODULE'),
+ ('shlex',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shlex.py',
+ 'PYMODULE'),
+ ('runpy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\runpy.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pkgutil.py',
+ 'PYMODULE'),
+ ('xml',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getpass.py',
+ 'PYMODULE'),
+ ('nturl2path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\nturl2path.py',
+ 'PYMODULE'),
+ ('ftplib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ftplib.py',
+ 'PYMODULE'),
+ ('netrc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\netrc.py',
+ 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\plistlib.py',
+ 'PYMODULE'),
+ ('platform',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\platform.py',
+ 'PYMODULE'),
+ ('token',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\token.py',
+ 'PYMODULE'),
+ ('tokenize',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tokenize.py',
+ 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tempfile.py',
+ 'PYMODULE'),
+ ('tty',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tty.py',
+ 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\__init__.py',
+ 'PYMODULE'),
+ ('ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ssl.py',
+ 'PYMODULE'),
+ ('http.client',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\mimetypes.py',
+ 'PYMODULE'),
+ ('socketserver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\__init__.py',
+ 'PYMODULE'),
+ ('http.server',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\optparse.py',
+ 'PYMODULE'),
+ ('uu',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uu.py',
+ 'PYMODULE'),
+ ('quopri',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\quopri.py',
+ 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\__init__.py',
+ 'PYMODULE'),
+ ('calendar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\calendar.py',
+ 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\base64.py',
+ 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hashlib.py',
+ 'PYMODULE'),
+ ('bisect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bisect.py',
+ 'PYMODULE'),
+ ('random',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\random.py',
+ 'PYMODULE'),
+ ('email.generator',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bz2.py',
+ 'PYMODULE'),
+ ('lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\lzma.py',
+ 'PYMODULE'),
+ ('_compression',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gzip.py',
+ 'PYMODULE'),
+ ('tarfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tarfile.py',
+ 'PYMODULE'),
+ ('py_compile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\py_compile.py',
+ 'PYMODULE'),
+ ('zipfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\zipfile.py',
+ 'PYMODULE'),
+ ('shutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shutil.py',
+ 'PYMODULE'),
+ ('socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socket.py',
+ 'PYMODULE'),
+ ('webbrowser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\webbrowser.py',
+ 'PYMODULE'),
+ ('pydoc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc.py',
+ 'PYMODULE'),
+ ('getopt',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getopt.py',
+ 'PYMODULE'),
+ ('pdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pdb.py',
+ 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\string.py',
+ 'PYMODULE'),
+ ('logging',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('doctest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\doctest.py',
+ 'PYMODULE'),
+ ('stat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stat.py',
+ 'PYMODULE'),
+ ('genericpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\posixpath.py',
+ 'PYMODULE'),
+ ('signal',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\signal.py',
+ 'PYMODULE'),
+ ('contextlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\contextlib.py',
+ 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\threading.py',
+ 'PYMODULE'),
+ ('selectors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\selectors.py',
+ 'PYMODULE'),
+ ('subprocess',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\subprocess.py',
+ 'PYMODULE'),
+ ('gettext',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gettext.py',
+ 'PYMODULE'),
+ ('copy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\copy.py',
+ 'PYMODULE'),
+ ('textwrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\textwrap.py',
+ 'PYMODULE'),
+ ('argparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\argparse.py',
+ 'PYMODULE'),
+ ('pprint',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pprint.py',
+ 'PYMODULE'),
+ ('pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pickle.py',
+ 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('xml.dom.minidom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minidom.py',
+ 'PYMODULE'),
+ ('xml.dom.pulldom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\pulldom.py',
+ 'PYMODULE'),
+ ('xml.dom.expatbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\expatbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.NodeFilter',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\NodeFilter.py',
+ 'PYMODULE'),
+ ('xml.dom.xmlbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\xmlbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.minicompat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minicompat.py',
+ 'PYMODULE'),
+ ('xml.dom.domreg',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\domreg.py',
+ 'PYMODULE'),
+ ('xml.dom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.expected_conditions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\expected_conditions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\utils.py',
+ 'PYMODULE'),
+ ('json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\__init__.py',
+ 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5.application_cache',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\application_cache.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\utils.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.by',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\by.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.file_detector',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\file_detector.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.mobile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\mobile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.switch_to',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\switch_to.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.alert',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\alert.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.errorhandler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\errorhandler.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\remote_connection.py',
+ 'PYMODULE'),
+ ('urllib3',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.retry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\retry.py',
+ 'PYMODULE'),
+ ('urllib3.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\wait.py',
+ 'PYMODULE'),
+ ('urllib3.util.ssl_',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\ssl_.py',
+ 'PYMODULE'),
+ ('ipaddress',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ipaddress.py',
+ 'PYMODULE'),
+ ('hmac',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hmac.py',
+ 'PYMODULE'),
+ ('urllib3.util.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\response.py',
+ 'PYMODULE'),
+ ('queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\queue.py',
+ 'PYMODULE'),
+ ('urllib3.util.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\connection.py',
+ 'PYMODULE'),
+ ('urllib3.contrib._appengine_environ',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\_appengine_environ.py',
+ 'PYMODULE'),
+ ('urllib3.contrib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.six',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\six.py',
+ 'PYMODULE'),
+ ('urllib3.packages',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname._implementation',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\_implementation.py',
+ 'PYMODULE'),
+ ('urllib3.util.timeout',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\timeout.py',
+ 'PYMODULE'),
+ ('urllib3.util.url',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\url.py',
+ 'PYMODULE'),
+ ('urllib3.util.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\request.py',
+ 'PYMODULE'),
+ ('urllib3.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\response.py',
+ 'PYMODULE'),
+ ('urllib3.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connection.py',
+ 'PYMODULE'),
+ ('urllib3._collections',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\_collections.py',
+ 'PYMODULE'),
+ ('urllib3.poolmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\poolmanager.py',
+ 'PYMODULE'),
+ ('urllib3.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\request.py',
+ 'PYMODULE'),
+ ('urllib3.filepost',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\filepost.py',
+ 'PYMODULE'),
+ ('urllib3.fields',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\fields.py',
+ 'PYMODULE'),
+ ('urllib3.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\exceptions.py',
+ 'PYMODULE'),
+ ('urllib3.connectionpool',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connectionpool.py',
+ 'PYMODULE'),
+ ('urllib3.util.queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\queue.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.command',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\command.py',
+ 'PYMODULE'),
+ ('selenium.common.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\exceptions.py',
+ 'PYMODULE'),
+ ('selenium.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.ui',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\ui.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\wait.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\select.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.keys',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\keys.py',
+ 'PYMODULE'),
+ ('selenium.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.proxy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\proxy.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.touch_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\touch_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.action_chains',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\action_chains.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.action_builder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\action_builder.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.input_device',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\input_device.py',
+ 'PYMODULE'),
+ ('uuid',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uuid.py',
+ 'PYMODULE'),
+ ('ctypes.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\util.py',
+ 'PYMODULE'),
+ ('ctypes._aix',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_aix.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dyld',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dyld.py',
+ 'PYMODULE'),
+ ('ctypes.macholib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dylib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dylib.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.framework',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\framework.py',
+ 'PYMODULE'),
+ ('netbios',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\lib\\netbios.py',
+ 'PYMODULE'),
+ ('ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes._endian',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_endian.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.mouse_button',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\mouse_button.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.interaction',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\interaction.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.desired_capabilities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\desired_capabilities.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_binary',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_binary.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_profile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_profile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.extension_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\extension_connection.py',
+ 'PYMODULE'),
+ ('selenium',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\__init__.py',
+ 'PYMODULE'),
+ ('os',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\os.py',
+ 'PYMODULE')],
+ [('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY')],
+ [],
+ [],
+ [('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA')],
+ [])
diff --git a/new agile/build/ie_AgileDriver_selenium/EXE-00.toc b/new agile/build/ie_AgileDriver_selenium/EXE-00.toc
new file mode 100644
index 0000000..fb2065d
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/EXE-00.toc
@@ -0,0 +1,114 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\dist\\ie_AgileDriver_selenium.exe',
+ True,
+ False,
+ False,
+ None,
+ None,
+ False,
+ False,
+ '',
+ True,
+ 'ie_AgileDriver_selenium.pkg',
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE'),
+ ('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA'),
+ ('ie_AgileDriver_selenium.exe.manifest',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\ie_AgileDriver_selenium.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename ie_AgileDriver_selenium.exe.manifest',
+ '',
+ 'OPTION')],
+ [],
+ False,
+ False,
+ 1557459744,
+ [('run.exe',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-32bit\\run.exe',
+ 'EXECUTABLE')])
diff --git a/new agile/build/ie_AgileDriver_selenium/PKG-00.pkg b/new agile/build/ie_AgileDriver_selenium/PKG-00.pkg
new file mode 100644
index 0000000..b4449c0
Binary files /dev/null and b/new agile/build/ie_AgileDriver_selenium/PKG-00.pkg differ
diff --git a/new agile/build/ie_AgileDriver_selenium/PKG-00.toc b/new agile/build/ie_AgileDriver_selenium/PKG-00.toc
new file mode 100644
index 0000000..ba650e3
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/PKG-00.toc
@@ -0,0 +1,107 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PKG-00.pkg',
+ {'BINARY': 1,
+ 'DATA': 1,
+ 'EXECUTABLE': 1,
+ 'EXTENSION': 1,
+ 'PYMODULE': 1,
+ 'PYSOURCE': 1,
+ 'PYZ': 0},
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('ie_AgileDriver_selenium',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\ie_AgileDriver_selenium.py',
+ 'PYSOURCE'),
+ ('python37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\python37.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('_ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ssl.pyd',
+ 'EXTENSION'),
+ ('pyexpat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\pyexpat.pyd',
+ 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('_hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_hashlib.pyd',
+ 'EXTENSION'),
+ ('_bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_bz2.pyd',
+ 'EXTENSION'),
+ ('_lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_lzma.pyd',
+ 'EXTENSION'),
+ ('_socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_socket.pyd',
+ 'EXTENSION'),
+ ('select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\select.pyd',
+ 'EXTENSION'),
+ ('_queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_queue.pyd',
+ 'EXTENSION'),
+ ('win32wnet',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\win32wnet.pyd',
+ 'EXTENSION'),
+ ('_ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\_ctypes.pyd',
+ 'EXTENSION'),
+ ('libssl-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libssl-1_1.dll',
+ 'BINARY'),
+ ('libcrypto-1_1.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\DLLs\\libcrypto-1_1.dll',
+ 'BINARY'),
+ ('pywintypes37.dll',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\pywin32_system32\\pywintypes37.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\base_library.zip',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.xpi',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\amd64\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver_prefs.json',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\getAttribute.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\getAttribute.js',
+ 'DATA'),
+ ('selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\x86\\x_ignore_nofocus.so',
+ 'DATA'),
+ ('selenium\\webdriver\\remote\\isDisplayed.js',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\isDisplayed.js',
+ 'DATA'),
+ ('ie_AgileDriver_selenium.exe.manifest',
+ 'C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\ie_AgileDriver_selenium.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename ie_AgileDriver_selenium.exe.manifest',
+ '',
+ 'OPTION')],
+ False,
+ False,
+ False)
diff --git a/new agile/build/ie_AgileDriver_selenium/PYZ-00.pyz b/new agile/build/ie_AgileDriver_selenium/PYZ-00.pyz
new file mode 100644
index 0000000..489c8f1
Binary files /dev/null and b/new agile/build/ie_AgileDriver_selenium/PYZ-00.pyz differ
diff --git a/new agile/build/ie_AgileDriver_selenium/PYZ-00.toc b/new agile/build/ie_AgileDriver_selenium/PYZ-00.toc
new file mode 100644
index 0000000..fccd246
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/PYZ-00.toc
@@ -0,0 +1,793 @@
+('C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload\\build\\ie_AgileDriver_selenium\\PYZ-00.pyz',
+ [('ntpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ntpath.py',
+ 'PYMODULE'),
+ ('_strptime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_strptime.py',
+ 'PYMODULE'),
+ ('datetime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\datetime.py',
+ 'PYMODULE'),
+ ('stringprep',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stringprep.py',
+ 'PYMODULE'),
+ ('_py_abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_py_abc.py',
+ 'PYMODULE'),
+ ('typing',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\typing.py',
+ 'PYMODULE'),
+ ('fnmatch',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\fnmatch.py',
+ 'PYMODULE'),
+ ('struct',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\struct.py',
+ 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('__future__',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\__future__.py',
+ 'PYMODULE'),
+ ('difflib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\difflib.py',
+ 'PYMODULE'),
+ ('ast',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ast.py',
+ 'PYMODULE'),
+ ('inspect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\inspect.py',
+ 'PYMODULE'),
+ ('cmd',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\cmd.py',
+ 'PYMODULE'),
+ ('bdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bdb.py',
+ 'PYMODULE'),
+ ('opcode',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\opcode.py',
+ 'PYMODULE'),
+ ('dis',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\dis.py',
+ 'PYMODULE'),
+ ('codeop',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\codeop.py',
+ 'PYMODULE'),
+ ('code',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\code.py',
+ 'PYMODULE'),
+ ('glob',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\glob.py',
+ 'PYMODULE'),
+ ('shlex',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shlex.py',
+ 'PYMODULE'),
+ ('runpy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\runpy.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pkgutil.py',
+ 'PYMODULE'),
+ ('xml',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getpass.py',
+ 'PYMODULE'),
+ ('nturl2path',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\nturl2path.py',
+ 'PYMODULE'),
+ ('ftplib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ftplib.py',
+ 'PYMODULE'),
+ ('netrc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\netrc.py',
+ 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\plistlib.py',
+ 'PYMODULE'),
+ ('platform',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\platform.py',
+ 'PYMODULE'),
+ ('token',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\token.py',
+ 'PYMODULE'),
+ ('tokenize',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tokenize.py',
+ 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tempfile.py',
+ 'PYMODULE'),
+ ('tty',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tty.py',
+ 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\html\\__init__.py',
+ 'PYMODULE'),
+ ('ssl',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ssl.py',
+ 'PYMODULE'),
+ ('http.client',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\mimetypes.py',
+ 'PYMODULE'),
+ ('socketserver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\__init__.py',
+ 'PYMODULE'),
+ ('http.server',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\optparse.py',
+ 'PYMODULE'),
+ ('uu',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uu.py',
+ 'PYMODULE'),
+ ('quopri',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\quopri.py',
+ 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\__init__.py',
+ 'PYMODULE'),
+ ('calendar',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\calendar.py',
+ 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\base64.py',
+ 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hashlib.py',
+ 'PYMODULE'),
+ ('bisect',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bisect.py',
+ 'PYMODULE'),
+ ('random',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\random.py',
+ 'PYMODULE'),
+ ('email.generator',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\bz2.py',
+ 'PYMODULE'),
+ ('lzma',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\lzma.py',
+ 'PYMODULE'),
+ ('_compression',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gzip.py',
+ 'PYMODULE'),
+ ('tarfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tarfile.py',
+ 'PYMODULE'),
+ ('py_compile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\py_compile.py',
+ 'PYMODULE'),
+ ('zipfile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\zipfile.py',
+ 'PYMODULE'),
+ ('shutil',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\shutil.py',
+ 'PYMODULE'),
+ ('socket',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\socket.py',
+ 'PYMODULE'),
+ ('webbrowser',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\webbrowser.py',
+ 'PYMODULE'),
+ ('pydoc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pydoc.py',
+ 'PYMODULE'),
+ ('getopt',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\getopt.py',
+ 'PYMODULE'),
+ ('pdb',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pdb.py',
+ 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\string.py',
+ 'PYMODULE'),
+ ('logging',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('doctest',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\doctest.py',
+ 'PYMODULE'),
+ ('stat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\stat.py',
+ 'PYMODULE'),
+ ('genericpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\posixpath.py',
+ 'PYMODULE'),
+ ('signal',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\signal.py',
+ 'PYMODULE'),
+ ('contextlib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\contextlib.py',
+ 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\threading.py',
+ 'PYMODULE'),
+ ('selectors',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\selectors.py',
+ 'PYMODULE'),
+ ('subprocess',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\subprocess.py',
+ 'PYMODULE'),
+ ('gettext',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\gettext.py',
+ 'PYMODULE'),
+ ('copy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\copy.py',
+ 'PYMODULE'),
+ ('textwrap',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\textwrap.py',
+ 'PYMODULE'),
+ ('argparse',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\argparse.py',
+ 'PYMODULE'),
+ ('pprint',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pprint.py',
+ 'PYMODULE'),
+ ('pickle',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\pickle.py',
+ 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('xml.dom.minidom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minidom.py',
+ 'PYMODULE'),
+ ('xml.dom.pulldom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\pulldom.py',
+ 'PYMODULE'),
+ ('xml.dom.expatbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\expatbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.NodeFilter',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\NodeFilter.py',
+ 'PYMODULE'),
+ ('xml.dom.xmlbuilder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\xmlbuilder.py',
+ 'PYMODULE'),
+ ('xml.dom.minicompat',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\minicompat.py',
+ 'PYMODULE'),
+ ('xml.dom.domreg',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\domreg.py',
+ 'PYMODULE'),
+ ('xml.dom',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\xml\\dom\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.expected_conditions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\expected_conditions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\utils.py',
+ 'PYMODULE'),
+ ('json',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\__init__.py',
+ 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5.application_cache',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\application_cache.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.html5',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\html5\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.utils',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\utils.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.by',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\by.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.file_detector',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\file_detector.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.mobile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\mobile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.switch_to',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\switch_to.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.alert',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\alert.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.errorhandler',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\errorhandler.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\remote_connection.py',
+ 'PYMODULE'),
+ ('urllib3',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.retry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\retry.py',
+ 'PYMODULE'),
+ ('urllib3.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.util.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\wait.py',
+ 'PYMODULE'),
+ ('urllib3.util.ssl_',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\ssl_.py',
+ 'PYMODULE'),
+ ('ipaddress',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ipaddress.py',
+ 'PYMODULE'),
+ ('hmac',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\hmac.py',
+ 'PYMODULE'),
+ ('urllib3.util.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\response.py',
+ 'PYMODULE'),
+ ('queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\queue.py',
+ 'PYMODULE'),
+ ('urllib3.util.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\connection.py',
+ 'PYMODULE'),
+ ('urllib3.contrib._appengine_environ',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\_appengine_environ.py',
+ 'PYMODULE'),
+ ('urllib3.contrib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.six',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\six.py',
+ 'PYMODULE'),
+ ('urllib3.packages',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\__init__.py',
+ 'PYMODULE'),
+ ('urllib3.packages.ssl_match_hostname._implementation',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\packages\\ssl_match_hostname\\_implementation.py',
+ 'PYMODULE'),
+ ('urllib3.util.timeout',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\timeout.py',
+ 'PYMODULE'),
+ ('urllib3.util.url',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\url.py',
+ 'PYMODULE'),
+ ('urllib3.util.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\request.py',
+ 'PYMODULE'),
+ ('urllib3.response',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\response.py',
+ 'PYMODULE'),
+ ('urllib3.connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connection.py',
+ 'PYMODULE'),
+ ('urllib3._collections',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\_collections.py',
+ 'PYMODULE'),
+ ('urllib3.poolmanager',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\poolmanager.py',
+ 'PYMODULE'),
+ ('urllib3.request',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\request.py',
+ 'PYMODULE'),
+ ('urllib3.filepost',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\filepost.py',
+ 'PYMODULE'),
+ ('urllib3.fields',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\fields.py',
+ 'PYMODULE'),
+ ('urllib3.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\exceptions.py',
+ 'PYMODULE'),
+ ('urllib3.connectionpool',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\connectionpool.py',
+ 'PYMODULE'),
+ ('urllib3.util.queue',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\urllib3\\util\\queue.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.remote.command',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\remote\\command.py',
+ 'PYMODULE'),
+ ('selenium.common.exceptions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\exceptions.py',
+ 'PYMODULE'),
+ ('selenium.common',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\common\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.ui',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\ui.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.wait',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\wait.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.support.select',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\support\\select.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.keys',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\keys.py',
+ 'PYMODULE'),
+ ('selenium.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.proxy',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\proxy.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.touch_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\touch_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.action_chains',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\action_chains.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.action_builder',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\action_builder.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.input_device',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\input_device.py',
+ 'PYMODULE'),
+ ('uuid',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\uuid.py',
+ 'PYMODULE'),
+ ('ctypes.util',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\util.py',
+ 'PYMODULE'),
+ ('ctypes._aix',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_aix.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dyld',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dyld.py',
+ 'PYMODULE'),
+ ('ctypes.macholib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.dylib',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\dylib.py',
+ 'PYMODULE'),
+ ('ctypes.macholib.framework',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\macholib\\framework.py',
+ 'PYMODULE'),
+ ('netbios',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\win32\\lib\\netbios.py',
+ 'PYMODULE'),
+ ('ctypes',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\__init__.py',
+ 'PYMODULE'),
+ ('ctypes._endian',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\ctypes\\_endian.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.pointer_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\pointer_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.mouse_button',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\mouse_button.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_input',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_input.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.key_actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\key_actions.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions.interaction',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\interaction.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.actions',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\actions\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.common.desired_capabilities',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\common\\desired_capabilities.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.webkitgtk.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\webkitgtk\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.android',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\android\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.phantomjs.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\phantomjs\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.blackberry',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\blackberry\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.safari.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\safari\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.opera.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\opera\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.edge.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\edge\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.ie.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\ie\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.chrome.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\chrome\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.options',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\options.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\__init__.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_binary',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_binary.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.firefox_profile',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\firefox_profile.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webdriver',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webdriver.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.webelement',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\webelement.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.service',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\service.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.remote_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\remote_connection.py',
+ 'PYMODULE'),
+ ('selenium.webdriver.firefox.extension_connection',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\webdriver\\firefox\\extension_connection.py',
+ 'PYMODULE'),
+ ('selenium',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\site-packages\\selenium\\__init__.py',
+ 'PYMODULE'),
+ ('os',
+ 'c:\\users\\test\\appdata\\local\\programs\\python\\python37-32\\lib\\os.py',
+ 'PYMODULE')])
diff --git a/new agile/build/ie_AgileDriver_selenium/base_library.zip b/new agile/build/ie_AgileDriver_selenium/base_library.zip
new file mode 100644
index 0000000..9987218
Binary files /dev/null and b/new agile/build/ie_AgileDriver_selenium/base_library.zip differ
diff --git a/new agile/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest b/new agile/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest
new file mode 100644
index 0000000..81c2fd3
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/ie_AgileDriver_selenium.exe.manifest
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/new agile/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt b/new agile/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt
new file mode 100644
index 0000000..2b3385c
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/warn-ie_AgileDriver_selenium.txt
@@ -0,0 +1,43 @@
+
+This file lists modules PyInstaller was not able to find. This does not
+necessarily mean this module is required for running you program. Python and
+Python 3rd-party packages include a lot of conditional or optional module. For
+example the module 'ntpath' only exists on Windows, whereas the module
+'posixpath' only exists on Posix systems.
+
+Types if import:
+* top-level: imported at the top-level - look at these first
+* conditional: imported within an if-statement
+* delayed: imported from within a function
+* optional: imported within a try-except-statement
+
+IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
+ yourself tracking down the missing module. Thanks!
+
+missing module named resource - imported by posix (top-level), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named posix - imported by os (conditional, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _posixsubprocess - imported by subprocess (conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named org - imported by pickle (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _winreg - imported by platform (delayed, optional), selenium.webdriver.firefox.firefox_binary (delayed, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named _scproxy - imported by urllib.request (conditional)
+missing module named java - imported by platform (delayed), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named vms_lib - imported by platform (delayed, conditional, optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named termios - imported by tty (top-level), getpass (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named grp - imported by shutil (optional), tarfile (optional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), http.server (delayed, optional), webbrowser (delayed), netrc (delayed, conditional), getpass (delayed), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional), C:\Users\Test\Desktop\JRE_Install&AgileDriverDownload\ie_AgileDriver_selenium.py (top-level)
+missing module named urllib2 - imported by selenium.webdriver.common.utils (delayed, optional), selenium.webdriver.common.service (delayed, optional)
+missing module named urlparse - imported by selenium.webdriver.remote.remote_connection (optional)
+runtime module named urllib3.packages.six.moves - imported by http.client (top-level), urllib3.connectionpool (top-level), urllib3.util.response (top-level), 'urllib3.packages.six.moves.urllib' (top-level), urllib3.response (top-level), urllib3.util.queue (top-level)
+missing module named StringIO - imported by selenium.webdriver.remote.webelement (optional), urllib3.packages.six (conditional)
+missing module named backports - imported by urllib3.packages.ssl_match_hostname (optional)
+missing module named "'urllib3.packages.six.moves.urllib'.parse" - imported by urllib3.request (top-level), urllib3.poolmanager (top-level)
+missing module named Queue - imported by urllib3.util.queue (conditional)
+missing module named _uuid - imported by uuid (optional)
+missing module named httplib - imported by selenium.webdriver.safari.webdriver (optional), selenium.webdriver.blackberry.webdriver (optional), selenium.webdriver.webkitgtk.webdriver (optional)
+missing module named cStringIO - imported by selenium.webdriver.firefox.firefox_profile (optional)
+missing module named copy_reg - imported by cStringIO (top-level)
diff --git a/new agile/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html b/new agile/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html
new file mode 100644
index 0000000..3e5ee29
--- /dev/null
+++ b/new agile/build/ie_AgileDriver_selenium/xref-ie_AgileDriver_selenium.html
@@ -0,0 +1,11740 @@
+
+
+ modulegraph cross reference for ie_AgileDriver_selenium.py
+
+
+
+ modulegraph cross reference for ie_AgileDriver_selenium.py
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Queue
+
MissingModule
+
+
+
+
+
+
+
+
+
+
_abc (builtin module)
+
+
+
+
+
+
_ast (builtin module)
+
+
+
+
+
+
_bisect (builtin module)
+
+
+
+
+
+
_blake2 (builtin module)
+
+
+
+
+
+
+
+
_bz2 c:\users\test\appdata\local\programs\python\python37-32\DLLs\_bz2.pyd
+
+
+
+
+
+
_codecs (builtin module)
+
+
+
+
+
+
_codecs_cn (builtin module)
+
+
+
+
+
+
_codecs_hk (builtin module)
+
+
+
+
+
+
_codecs_iso2022 (builtin module)
+
+
+
+
+
+
_codecs_jp (builtin module)
+
+
+
+
+
+
_codecs_kr (builtin module)
+
+
+
+
+
+
_codecs_tw (builtin module)
+
+
+
+
+
+
_collections (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
_ctypes c:\users\test\appdata\local\programs\python\python37-32\DLLs\_ctypes.pyd
+
+
+
+
+
+
_datetime (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_functools (builtin module)
+
+
+
+
+
+
_hashlib c:\users\test\appdata\local\programs\python\python37-32\DLLs\_hashlib.pyd
+
+
+
+
+
+
_heapq (builtin module)
+
+
+
+
+
+
_imp (builtin module)
+
+
+
+
+
+
_io (builtin module)
+
+
+
+
+
+
_json (builtin module)
+
+
+
+
+
+
+
_locale (builtin module)
+
+
+
+
+
+
_lzma c:\users\test\appdata\local\programs\python\python37-32\DLLs\_lzma.pyd
+
+
+
+
+
+
_md5 (builtin module)
+
+
+
+
+
+
_multibytecodec (builtin module)
+
+
+
+
+
+
_opcode (builtin module)
+
+
+
+
+
+
_operator (builtin module)
+
+
+
+
+
+
_pickle (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_queue c:\users\test\appdata\local\programs\python\python37-32\DLLs\_queue.pyd
+imported by:
+
queue
+
+
+
+
+
+
+
+
_random (builtin module)
+
+
+
+
+
+
+
+
_sha1 (builtin module)
+
+
+
+
+
+
_sha256 (builtin module)
+
+
+
+
+
+
_sha3 (builtin module)
+
+
+
+
+
+
_sha512 (builtin module)
+
+
+
+
+
+
_signal (builtin module)
+
+
+
+
+
+
_socket c:\users\test\appdata\local\programs\python\python37-32\DLLs\_socket.pyd
+
+
+
+
+
+
_sre (builtin module)
+
+
+
+
+
+
+
_ssl c:\users\test\appdata\local\programs\python\python37-32\DLLs\_ssl.pyd
+
+
+
+
+
+
+
_stat (builtin module)
+
+
+
+
+
+
_string (builtin module)
+
+
+
+
+
+
+
+
_struct (builtin module)
+
+
+
+
+
+
_thread (builtin module)
+
+
+
+
+
+
+
+
_tracemalloc (builtin module)
+
+
+
+
+
+
_uuid
+
MissingModule
+
+
+
+
+
+
_warnings (builtin module)
+
+
+
+
+
+
_weakref (builtin module)
+
+
+
+
+
+
+
+
_winapi (builtin module)
+
+
+
+
+
+
+
+
abc
+
SourceModule
+
+
+
+
+
+
+
+
+
ast
+
SourceModule
+
+
+
+
+
+
+
atexit (builtin module)
+
+
+
+
+
+
+
+
base64
+
SourceModule
+
+
+
+
+
+
+
bdb
+
SourceModule
+
+
+
+
+
+
+
binascii (builtin module)
+
+
+
+
+
+
bisect
+
SourceModule
+
+
+
+
+
+
+
builtins (builtin module)
+
+
+
+
+
+
bz2
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
cmd
+
SourceModule
+
+
+
+
+
+
+
code
+
SourceModule
+
+
+
+
+
+
+
codecs
+
SourceModule
+
+
+
+
+
+
+
codeop
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
copy
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
dis
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
enum
+
SourceModule
+
+
+
+
+
+
+
errno (builtin module)
+
+
+
+
+
+
+
+
ftplib
+
SourceModule
+
+
+
+
+
+
+
+
+
gc (builtin module)
+
+
+
+
+
+
+
+
+
getopt
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
glob
+
SourceModule
+
+
+
+
+
+
+
grp
+
MissingModule
+
+
+
+
+
+
gzip
+
SourceModule
+
+
+
+
+
+
+
+
+
heapq
+
SourceModule
+
+
+
+
+
+
+
hmac
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
io
+
SourceModule
+
+
+
+
+
+
+
+
+
itertools (builtin module)
+
+
+
+
+
+
java
+
MissingModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
locale
+
SourceModule
+
+
+
+
+
+
+
+
+
lzma
+
SourceModule
+
+
+
+
+
+
+
marshal (builtin module)
+
+
+
+
+
+
math (builtin module)
+
+
+
+
+
+
+
+
msvcrt (builtin module)
+
+
+
+
+
+
+
+
netrc
+
SourceModule
+
+
+
+
+
+
+
nt (builtin module)
+
+
+
+
+
+
ntpath
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
opcode
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
org
+
MissingModule
+
+
+
+
+
+
os
+
SourceModule
+
+
+
+
+
+
+
pdb
+
SourceModule
+
+
+
+
+
+
+
pickle
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
posix
+
MissingModule
+
+
+
+
+
+
+
+
+
pprint
+
SourceModule
+
+
+
+
+
+
+
pwd
+
MissingModule
+
+
+
+
+
+
+
+
pydoc
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
pyexpat c:\users\test\appdata\local\programs\python\python37-32\DLLs\pyexpat.pyd
+
+
+
+
+
+
queue
+
SourceModule
+
+imported by:
+
queue
+
+
+
+
+
+
+
+
queue
+
AliasNode
+
+
+
+
+
+
+
quopri
+
SourceModule
+
+
+
+
+
+
+
random
+
SourceModule
+
+
+
+
+
+
+
re
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
runpy
+
SourceModule
+
+
+
+
+
+
+
select c:\users\test\appdata\local\programs\python\python37-32\DLLs\select.pyd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
shlex
+
SourceModule
+
+
+
+
+
+
+
shutil
+
SourceModule
+
+
+
+
+
+
+
signal
+
SourceModule
+
+
+
+
+
+
+
socket
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
ssl
+
SourceModule
+
+
+
+
+
+
+
stat
+
SourceModule
+
+
+
+
+
+
+
string
+
SourceModule
+
+
+
+
+
+
+
+
+
struct
+
SourceModule
+
+
+
+
+
+
+
+
+
sys (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
time (builtin module)
+
+
+
+
+
+
+
token
+
SourceModule
+imports:
+
re
+ •
sys
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
tty
+
SourceModule
+
+
+
+
+
+
+
types
+
SourceModule
+
+
+
+
+
+
+
typing
+
SourceModule
+
+
+
+
+
+
+
unicodedata c:\users\test\appdata\local\programs\python\python37-32\DLLs\unicodedata.pyd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
uu
+
SourceModule
+
+
+
+
+
+
+
uuid
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
win32wnet c:\users\test\appdata\local\programs\python\python37-32\lib\site-packages\win32\win32wnet.pyd
+
+
+
+
+
+
winreg (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
zipimport (builtin module)
+
+
+
+
+
+
+
zlib (builtin module)
+
+
+
+
+
diff --git a/new agile/database.xml b/new agile/database.xml
new file mode 100644
index 0000000..d04ca28
--- /dev/null
+++ b/new agile/database.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/new agile/dist/ie_AgileDriver_selenium.exe b/new agile/dist/ie_AgileDriver_selenium.exe
new file mode 100644
index 0000000..72cce98
Binary files /dev/null and b/new agile/dist/ie_AgileDriver_selenium.exe differ
diff --git a/new agile/ie_AgileDriver_selenium.exe b/new agile/ie_AgileDriver_selenium.exe
new file mode 100644
index 0000000..72cce98
Binary files /dev/null and b/new agile/ie_AgileDriver_selenium.exe differ
diff --git a/new agile/ie_AgileDriver_selenium.py b/new agile/ie_AgileDriver_selenium.py
new file mode 100644
index 0000000..17c1530
--- /dev/null
+++ b/new agile/ie_AgileDriver_selenium.py
@@ -0,0 +1,78 @@
+import os
+import time
+from selenium import webdriver
+from selenium.webdriver.common.keys import Keys
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.keys import Keys
+import xml.dom.minidom
+from pykeyboard import PyKeyboard
+dom = xml.dom.minidom.parse('database.xml')
+root = dom.documentElement
+itemlist = root.getElementsByTagName('login')
+item = itemlist[0]
+User=item.getAttribute("username")
+Pwd=item.getAttribute("passwd")
+
+li=list((input("input SWB:").split(" ")))
+cwd=os.getcwd()
+path=cwd+"\\IEDriverServer.exe"
+iedriver=(path)
+os.environ["webdriver.ie.driver"] = iedriver
+browser = webdriver.Ie(iedriver)
+browser.get("https://agile.us.dell.com/Agile/default/login-cms.jsp")
+browser.find_element_by_name('j_username').clear()
+browser.find_element_by_name('j_username').send_keys(User)
+browser.find_element_by_name('j_password').clear()
+browser.find_element_by_name('j_password').send_keys(Pwd)
+browser.find_element_by_name('j_password').send_keys(Keys.ENTER)
+for SWB in li:
+ print(SWB)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=2):
+ browser.switch_to_window(browser.window_handles[1])
+ browser.implicitly_wait(200)
+ break
+ os.system("md 'C:\AgileDownload\'+str(SWB)")
+ browser.implicitly_wait(200)
+ WebDriverWait(browser,10,0.1).until(lambda browser:browser.find_element_by_id('selector_elm'))
+ ele=browser.find_element_by_id('selector_elm')
+ browser.execute_script('arguments[0].click()',ele)
+ ele=browser.find_element_by_xpath('//*[@id="cls_901"]/a')
+ browser.execute_script('arguments[0].click()',ele)
+ WebDriverWait(browser,20,0.5).until(lambda browser:browser.find_element_by_name('QUICKSEARCH_STRING'))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.CONTROL + 'a')
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(str(SWB))
+ browser.find_element_by_name('QUICKSEARCH_STRING').send_keys(Keys.ENTER)
+ WebDriverWait(browser,30,0.5).until(lambda browser:browser.find_element_by_id('Actionsspan'))
+ ele=browser.find_element_by_id('Actionsspan')
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(30)
+ ele=browser.find_element_by_xpath("//a[text()='AIC_AgileAttachmentUtility']")
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(30)
+ for x in range(2,99999):
+ if(len(browser.window_handles)>=3):
+ browser.switch_to_window(browser.window_handles[-1])
+ browser.implicitly_wait(200)
+ break
+ WebDriverWait(browser,20,0.1).until(lambda browser:browser.find_element_by_link_text('File Download'))
+ ele=browser.find_element_by_link_text('File Download')
+ browser.execute_script('arguments[0].click()',ele)
+ browser.implicitly_wait(200)
+ WebDriverWait(browser,60,0.5).until(lambda browser:browser.find_elements_by_css_selector('input[type=checkbox]'))
+ checkboxes = browser.find_elements_by_css_selector('input[type=checkbox]')
+ for checkbox in checkboxes:
+ browser.execute_script('arguments[0].click()',checkbox)
+ download= browser.find_elements_by_css_selector('input[type=button]')
+ browser.execute_script('arguments[0].click()',download[0])
+ browser.implicitly_wait(30)
+ for x in range(2,100):
+ if(len(browser.window_handles)>=3):
+ time.sleep(3)
+ browser.switch_to_window(browser.window_handles[-1])
+ break
+ time.sleep(30)
+ k = PyKeyboard()
+ # k.tap_key(k.right_key)
+ k.type_string('C:/AgileDownload/'+str(SWB))
+ k.tap_key(k.enter_key)
\ No newline at end of file
diff --git a/new agile/ie_AgileDriver_selenium.spec b/new agile/ie_AgileDriver_selenium.spec
new file mode 100644
index 0000000..3193531
--- /dev/null
+++ b/new agile/ie_AgileDriver_selenium.spec
@@ -0,0 +1,32 @@
+# -*- mode: python -*-
+
+block_cipher = None
+
+
+a = Analysis(['ie_AgileDriver_selenium.py'],
+ pathex=['C:\\Users\\Test\\Desktop\\JRE_Install&AgileDriverDownload'],
+ binaries=[],
+ datas=[],
+ hiddenimports=[],
+ hookspath=[],
+ runtime_hooks=[],
+ excludes=[],
+ win_no_prefer_redirects=False,
+ win_private_assemblies=False,
+ cipher=block_cipher,
+ noarchive=False)
+pyz = PYZ(a.pure, a.zipped_data,
+ cipher=block_cipher)
+exe = EXE(pyz,
+ a.scripts,
+ a.binaries,
+ a.zipfiles,
+ a.datas,
+ [],
+ name='ie_AgileDriver_selenium',
+ debug=False,
+ bootloader_ignore_signals=False,
+ strip=False,
+ upx=True,
+ runtime_tmpdir=None,
+ console=True )
diff --git a/new agile/new 1.txt b/new agile/new 1.txt
new file mode 100644
index 0000000..d02c65a
--- /dev/null
+++ b/new agile/new 1.txt
@@ -0,0 +1,9 @@
+https://agile.us.dell.com/Agile/PCMServlet?module=ReportExecHandler&opcode=submitReport&popup=true&objid=220905499&classid=8020
+
+//*[@id="prompt_okspan"]
+
+//*[@id="prompt_okspan"]
+
+//*[@id="prompt_ok"]
+
+https://agile.us.dell.com/Agile/PCMServlet
\ No newline at end of file
diff --git a/wechat.py b/wechat.py
new file mode 100644
index 0000000..f78ed11
--- /dev/null
+++ b/wechat.py
@@ -0,0 +1,17 @@
+# wechat autoreply
+from wxpy import *
+
+# 扫码登陆
+bot = Bot()
+# 初始化图灵机器人 (API key 申请: http://tuling123.com)
+
+tuling = Tuling(api_key='a05e064837ec40df929370b69c8397ac')
+
+# 自动回复所有文字消息
+@bot.register(msg_types=TEXT)
+def auto_reply_all(msg):
+ tuling.do_reply(msg)
+ print(msg.text, msg.sender)
+ print(tuling.reply_text(msg))
+# 开始运行
+bot.join()
diff --git a/wechat_2.py b/wechat_2.py
new file mode 100644
index 0000000..6d5c357
--- /dev/null
+++ b/wechat_2.py
@@ -0,0 +1,16 @@
+from wxpy import *
+bot = Bot()
+tuling = Tuling(api_key='a05e064837ec40df929370b69c8397ac')
+company_group = ensure_one(bot.groups().search('跟着老板老板娘闯天下'))
+y=0
+for x in company_group:
+ y+=1
+ print(str(y)+". "+x)
+
+# @bot.register(my_friend)
+# def reply_my_friend(msg):
+ # tuling.do_reply(msg)
+ # print(msg.text, msg.sender)
+ # print(tuling.reply_text(msg))
+
+# bot.join()
\ No newline at end of file
diff --git a/wechat_3.py b/wechat_3.py
new file mode 100644
index 0000000..1c8d580
--- /dev/null
+++ b/wechat_3.py
@@ -0,0 +1,19 @@
+from wxpy import *
+import winsound
+import sys
+import os
+
+bot = Bot()
+tuling = Tuling(api_key='f0b70cd7021b43efa33b3de2afa11747')
+my_friend = bot.mps().search("同程旅游网")[0]
+print(my_friend)
+
+@bot.register(my_friend)
+def reply_my_friend(msg):
+ tuling.do_reply(msg)
+ f=open('C:/Users/JYH/Desktop/test.txt','a')
+ print(msg.text, msg.sender,file = f, flush = True)
+ print(tuling.reply_text(msg),file = f, flush = True)
+ winsound.MessageBeep(winsound.MB_ICONHAND)
+
+bot.join()
\ No newline at end of file
diff --git a/wechat_my.py b/wechat_my.py
new file mode 100644
index 0000000..f7b6540
--- /dev/null
+++ b/wechat_my.py
@@ -0,0 +1,54 @@
+# wechat autoreply
+from wxpy import *
+import os
+import random
+# 扫码登陆
+bot = Bot()
+# 初始化图灵机器人 (API key 申请: http://tuling123.com)
+my_friend= bot.chats()
+a=0
+for x in my_friend:
+ a+=1
+ print(a)
+ print(x)
+print("查找完成")
+# tuling = Tuling(api_key='a05e064837ec40df929370b69c8397ac')
+
+# 自动回复所有文字消息
+# @bot.register(msg_types=TEXT)
+# def auto_reply_all(msg):
+ # tuling.do_reply(msg)
+ # print(msg.text, msg.sender)
+ # print(tuling.reply_text(msg))
+# 开始运行
+
+
+j=[]
+j.append("我一直想跟别人分享他的故事,但始终未果,说不上为什么,也许是这个世界太像大人太成熟。 I've always wanted to share his story, but always failed, can't say why, may be the world too much like mature adults too.")
+j.append("只恨我那是年纪太小,看不透他那小小花招背后的柔情。Only hate me that's age is too small, cannot see through his little tricks behind the tender feelings.")
+j.append("小王子:我那时什么也不懂!我应该根据她的行为,而不是根据她的话来判断她。她香气四溢,让我的生活更加芬芳多彩,我真不该离开她的...我早该猜到,在她那可笑的伎俩后面是缱绻")
+j.append("柔情啊。花朵是如此的天真无邪!可是,我毕竟是太年轻了,不知该如何去爱她。")
+j.append("这是我的一个秘密,再简单不过的秘密:一个人只有用心去看,才能看到真实。事情的真相只用眼睛是看不见的。")
+j.append("你知道的-当一个人情绪低落的时候,他会格外喜欢看日落……")
+j.append("正是你为你玫瑰花所花费的时间,才让你的玫瑰花变得如此重要。Is your roses the time it takes for you, that makes your rose so important.")
+j.append("村庄的温情不会外泄,想体会它的美丽,你不能匆匆走过。Village of warmth will not leak, wanted to experience its beauty, you can't hurried by.")
+
+@bot.register(my_friend)
+def reply(msg):
+ jj=j
+ print (msg.sender.name,':',msg.text,'Msg Type:',msg.type)
+ msg.sender.mark_as_read()
+ if ("Hello,jiayang" in msg.text):
+ my_msg=random.choice(jj)
+ msg.reply_msg(my_msg)
+ print("我: ",my_msg)
+
+ jj_p=jj.index(my_msg)
+ jj.pop(jj_p)
+ if(len(jj)==0):
+ msg.reply_msg("如果再也见不到你,那祝你早安,午安,晚安.")
+ # subprocess.call("pause",shell=True)
+ # os.system("pause")
+embed()
+# bot.join()
+