| 사용법
Selenium에서 현재 URL을 가져오고자 한다면 current_url을 사용하면 됩니다.
| 예제 코드
from selenium import webdriver
driver_path = '/Users/jgp/Python/chromedriver'
driver = webdriver.Chrome(driver_path, options=options)
driver.current_url
변수에 URL을 저장한 후 출력해보겠습니다.
from selenium import webdriver
driver_path = '/Users/jgp/Python/chromedriver'
driver = webdriver.Chrome(driver_path, options=options)
variable = driver.current_url
print(variable)
현재 URL은 'variable'이라는 변수에 저장되었고,
print(variable)이 콘솔 창에 현재 URL을 출력할 것입니다.