I'm trying to call a python .py web scraping script from another script.
I'm doing a lot of different try on Jupyter with different codes but the output is the same: No signal at all of any kind of task completed, it seems it stops at the very beginnig.
As said, it is a web scraping script I'm doing with undetected chromedriver (mandatory requirement to complete the script cause the website can detect the presence of a bot); I've tried doing it with the normal chromedriver and it works so I think the issue here is related with the undetected one.
This is the code, How can i move on?
def combinations(items):
result = []
for i in range(1, len(items) + 1):
result.extend(itertools.combinations(items, i))
return result
driver = uc.Chrome(executable_path=r"C:\\Users\\xx\\chromedriver.exe",service_args=['--quiet'])
driver.set_window_size(1024, 600)
driver.maximize_window()
driver.implicitly_wait(6.5)
wait=WebDriverWait(driver,10)
driver.get("https://www.bet365.it")