写真のように、①スマホモードにして、②のように横向きにする
これをpython3 + selenum を使って行うにはどうすればいいのでしょうか?
サンプルコード
こちらで、①スマホモードで起動には成功しました。
python.py
1#python3 2from selenium import webdriver 3from selenium.webdriver.chrome.options import Options 4 5options = Options() 6driver_path = ff.get_driver_path() 7mobile_emulation = { "deviceName": 'Moto G4' } 8options.add_experimental_option("mobileEmulation", mobile_emulation) 9driver = webdriver.Chrome(driver_path, chrome_options=options) 10driver.get('https://www.google.com/?hl=ja') 11
あなたの回答
tips
プレビュー