前提・実現したいこと
①exeファイルの起動
②ログイン情報を入力してログイン実行
③専用サイトが立ち上がる
④立ち上がった専用サイトで情報を抽出したい
発生している問題・エラーメッセージ
①、②はappiumで実装できました。
③でWebサイトが表示されるのですが、そのページが触れません...
WebサイトのURLをgetしてとは思ったのですが、このWebサイトのセキュリティとして
「exeログイン時にアクセス情報を保持」→「それ以外でURLでアクセスしてもアクセス権無し」となっているようです。
会員制Webサイトのセキュリティに近いと思いますが、exeからの流れはいまいち分からず
良いアイデアがあればお願い致します。
該当のソースコード
# coding:utf-8 from appium import webdriver from selenium import webdriver from selenium.webdriver.common.keys import Keys import time from selenium.webdriver.support.select import Select # 説明② desired_caps = {} desired_caps['app'] = '***.exe' # 説明③ driver = webdriver.Remote( command_executor='http://127.0.0.1:4723', desired_capabilities= desired_caps) time.sleep(1) bfcnet = driver.find_element_by_class_name('WindowsForms10.Window.8.app.0.141b42a_r7_ad1') print(bfcnet) bfcnet.find_element_by_class_name('WindowsForms10.EDIT.app.0.141b42a_r7_ad1').send_keys('*****') bfcnet.find_element_by_class_name('WindowsForms10.BUTTON.app.0.141b42a_r7_ad1').click() time.sleep(3)
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー