https://dolhani.tistory.com/521
df = pd.DataFrame(<data>)
# utf-8이 깨지는 경우, 대체할 수 있다.
df.to_csv('file.csv',encoding='utf-8-sig')
https://gist.github.com/BuhtigithuB/11df8cf8d03bb236985156de204fe7b4
해당 게시물에서는 splinter
라이브러리를 참조해서 쓰고 있는데, 단순히 selenium
만 쓰는 것으로는 언어를 바꿀 수 없는 것으로 보인다.
# This work with selenium
from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options
from splinter.driver.webdriver import BaseWebDriver, WebDriverElement
options = Options()
# not worked.. without splinter
options.add_experimental_option('prefs', {'intl.accept_languages': 'en,en_US'})
browser = BaseWebDriver()
browser.driver = Chrome(chrome_options=options)
browser.visit('http://example.com')