You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`from incapsula import IncapSession, WebsiteResourceParser, RecaptchaBlocked
from fake_useragent import UserAgent
class MyResourceParser(WebsiteResourceParser):
# List of arguments to pass into BeautifulSoup().find() method.
extra_find_iframe_args = [
('script', {'src': 'https://copart.com'})
]
`from incapsula import IncapSession, WebsiteResourceParser, RecaptchaBlocked
from fake_useragent import UserAgent
class MyResourceParser(WebsiteResourceParser):
# List of arguments to pass into BeautifulSoup().find() method.
extra_find_iframe_args = [
('script', {'src': 'https://copart.com'})
]
incap_session = IncapSession(resource_parser=MyResourceParser)
response = incap_session.get('https://copart.com', headers={'User-Agent': UserAgent().chrome})`
The text was updated successfully, but these errors were encountered: