python selenium alert내부 텍스트 가져오기

2016-11-07

    iframe에 접근했던 것 처럼 switch_to를 해 주면 된다.

# alert로 접근
alert = self.browser.switch_to_alert()
# alert의 텍스트 출력
print(alert.text)

참고 자료