我可以设置热键以使用chromedriver激活我的分机吗?
或者vm chrome在Windows 10 IntellJ IDEA
中保存它的配置文件的位置答案 0 :(得分:1)
是的,你可以这样:
$(document).ready(function () {
var $radioButton = $('#UpdateType input[type="radio"]');
$radioButton.click(function () {
clickFunc($(this));
});
clickFunc($radioButton);
});
function clickFunc($element){
var currentEmployee = $('.current-employee');
if ($element.attr('id') == 'UpdateType' && $element.val() == 'Current') {
currentEmployee.show();
}
else {
currentEmployee.hide();
}
}
答案 1 :(得分:0)
我发现虚拟浏览器存储其配置文件的位置,设置热键并将此配置文件用于后续运行