我正在使用Eclipse开发一个使用selenium java的测试场景,并希望使用browser-mob代理捕获har。
但是导入命令会抛出此错误
错误
导入net.lightbody无法解析
码
$.ajax({
url:"<?php echo site_url('Customer/ExportCsv'); ?>",
type: 'post',
data: { userId: userId },
success:function(data){
$('#ExpCsv').attr('Disabled',false);
$('#ExpCsvLoad').removeClass('fa fa-refresh fa-spin');
$('#ExpCsvLoad').addClass('fa fa-cloud-download');
$('#ExpCsvStatus').text('Export Customer CSV');
// newly appended code line
document.location.href = '<?php echo site_url('Customer/ExportCsv'); ?>';
}
});