我使用selenium网格,但我的屏幕分辨率有问题。我的节点是用Windows服务安装的。 该服务安装在我的计算机上,我的计算机的当前屏幕是1920x1080 但是当mytest运行时,最大分辨率为:1040/784。 怎么改变这个
使用“RemoteWebDriver” 语言:c#
答案 0 :(得分:0)
使用浏览器选项为测试设置所需的分辨率。
class Welcome extends CI_Controller {
public function index()
{
$this-> home();
}
public function home ()
{
$data['title'] = 'This is title';
$data['page_header'] = "Login Register Program";
$this -> load -> model('setup_model');
$this -> setup_model -> createDatabase();
$this -> load -> view('view_home', $data);
}
}