如何设置硒化物属性?

时间:2019-07-19 09:20:05

标签: properties selenide

我无法使用System.setProperty设置属性

System.setProperty("selenide.browserSize", "300x200");

此命令后,browserSize不变

2 个答案:

答案 0 :(得分:0)

尝试将此作为maven参数

-Dselenide.browserSize=300x200

答案 1 :(得分:0)

您可以在“配置”中使用Selenide构建。 导入配置:

import com.codeborne.selenide.Configuration;

运行Chrome的配置:

System.setProperty("webdriver.chrome.driver", ".\\chromedriver.exe");
Configuration.browser = "chrome";
Configuration.browserSize ="300x200"; //1920x1080

您还可以使用以下命令将浏览器设置为最大化:

Configuration.startMaximized = true;

配置命令具有非常好的功能,例如运行“无头”浏览器,“ holdBrowserOpen”和“ fastSetValue”