python selenium alert내부 텍스트 가져오기
iframe에 접근했던 것 처럼 switch_to
를 해 주면 된다.
# alert로 접근
alert = self.browser.switch_to_alert()
# alert의 텍스트 출력
print(alert.text)
Not First But Best
iframe에 접근했던 것 처럼 switch_to
를 해 주면 된다.
# alert로 접근
alert = self.browser.switch_to_alert()
# alert의 텍스트 출력
print(alert.text)