1
にダウンロードし続け:ファイルは、私は、基本的な設定方法を持っているデフォルトのダウンロードフォルダ
class BaseTestCase(object):
def setUp(self):
options = webdriver.ChromeOptions()
options.add_argument("download.default_directory=C:\Users\cverma\Desktop\SOAPProject")
self.driver = webdriver.Chrome(executable_path=r"C:\chromedriver\chromedriver.exe", chrome_options=options)
self.driver.maximize_window()
self.driver.get("https://qa.smartsimpleqa.com")
def tearDown(self):
self.driver.quit()
私は別のテストでは、この設定メソッドを呼び出しています。
chromeOptions = webdriver.ChromeOptions()
prefs = {"download.default_directory" : "C:\Users\cverma\Desktop\SOAPProject\"}
chromeOptions.add_experimental_option("prefs", prefs)
driver = webdriver.Chrome(executable_path=r"C:\chromedriver\chromedriver.exe", chrome_options=chromeOptions)
また、あなたがdownload.default_directory」として間違ったパスを設定している場合があることに注意してください:私のファイルは、私は、次の試してみてくださいC:\Users\cverma\Desktop\SOAPProject