I just need your help with a few simple commands with Selenium Python, Google Chrome Portable and Chrome Driver. Hope you can try to help me out (the error here is that it loads the page extremely slowly and almost freezes, I don't know if it's the fault of Selenium, Chrome Portable or Chrome Driver). Here is a simple code with Python and it runs so slow that it freezes.
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
options = webdriver.ChromeOptions()
options.add_argument("--user-data-dir=GoogleChromePortable\Data\profile")
driver = webdriver.Chrome(service=Service('pathtoChromeDriver\chromedriver.exe'),options=options)
driver.get("
https://www.google.com/search?q=my+ip")