I am trying to crawl this currency rate website: https://banking.nonghyup.com/servlet/PGEF0011I.view
(Just click the exchange rate check and you'll see the pic like below)
I want to crawl this dynamical table and I find its url via "Inspect->Network is : https://banking.nonghyup.com/servlet/PGEF0012R.frag
However, when I start to request it by selenium, it returns error due to abnormal requests, which comes up "We're sorry for causing you any inconvenience. You will not be able to use the service due to abnormal request. Please try again after confirmation." I am not sure how to proceed to the next step. Could you help? Many thanks!
driver.get('https://banking.nonghyup.com/servlet/PGEF0012R.frag')
soup = BeautifulSoup(driver.page_source, 'html.parser')