def new_task(logg): #===Создает заявку в демо2===
> driver = webdriver.Remote(
command_executor=executor,
desired_capabilities=capabilities)
E TypeError: WebDriver.__init__() got an unexpected keyword argument 'desired_capabilities'
autoTest.py:56: TypeError
=================================================================================== short test summary info ===================================================================================
FAILED autoTest.py::Test1::test_par_1 - TypeError: WebDriver.__init__() got an unexpected keyword argument 'desired_capabilities'
我的 python 自动测试有错误,我使用 Selenoid
但也许我需要在驱动程序上使用旧版本? 我的实际版本版本:3.9.0
我的 python 自动测试有错误,我使用 Selenoid
但也许我需要在我的驱动程序上使用旧版本? 我的实际版本版本:3.9.0
将所需的功能替换为选项
从 selenium.webdriver.chrome.options 导入选项作为 ChromeOptions 驱动程序= webdriver.Remote(command_executor =执行程序,选项=选项)