chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--window-size=1920,1080')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument("--disable-dev-shm-usage")
chrome_options.add_argument("--single-process")
chrome_options.add_argument('--disable-gpu')
chrome_options.add_argument('user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36')

driver = webdriver.Chrome(executable_path='./chromedriver', chrome_options=chrome_options)
driver.get(url=url)
driver.find_element(By.CSS_SELECTOR, '#id_ea_common_content > div > a').click()

print(driver.page_source)


윈도우 본컴에서는 잘 작동하는데

AWS로 돌린 ubuntu 20.04 LTS에서는 403 Forbidden만 나온다

이거 어케 해결할 방법 없음?