文件在默认下载文件夹中继续下载

时间:2016-12-08 19:29:21

标签: python selenium

我有一个基本的设置方法:

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()

当我在另一个测试中调用此安装方法时。我的文件一直在默认下载文件夹中下载,而我想在C:\Users\cverma\Desktop\SOAPProject

中点击后下载我的文件

1 个答案:

答案 0 :(得分:1)

请尝试以下操作:

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”值,则不会出现例外情况 - chromedriver将仅使用“下载”文件夹作为默认值