I need your help I'm using Windows 10
It's been 2 years since now that I have put the tor to work on windows and I never got it. this was the code version closest to the solution I have found to date. I have read hundreds of articles on the Internet but I cannot understand the solutions or they are false solutions. If anyone really has the skills to solve this problem and help me, I am very grateful to the stackoverflow.
from selenium import webdriver
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
binary = FirefoxBinary(r"C:\Users\abc\Desktop\PROGRAMAS\Tor Browser\Browser\firefox.exe")
profile = FirefoxProfile(r"C:\Users\abc\Desktop\PROGRAMAS\Tor Browser\Browser\TorBrowser\Data\Browser\profile.default")
driver = webdriver.Firefox(profile, binary)
driver.get("http://stackoverflow.com")
driver.save_screenshot("screenshot.png")
driver.quit()