SikuliX IDE для использования точечных символов

Мне нужно было это сделать и решил пойти по этому пути:

$('.overlay').click(function(e){
    var left = $(window).scrollLeft();
    var top = $(window).scrollTop();

    //hide the overlay for now so the document can find the underlying elements
    $(this).css('display','none');
    //use the current scroll position to deduct from the click position
    $(document.elementFromPoint(e.pageX-left, e.pageY-top)).click();
    //show the overlay again
    $(this).css('display','block');
});
0
задан plaidshirt 17 January 2019 в 13:48
поделиться

1 ответ

попробуйте использовать приведенный ниже код

paste(myPathname.force_encoding("Windows-1252").encode("UTF-8"))

. Для получения дополнительной информации обратитесь к ссылке .

0
ответ дан Feroz Hussain 17 January 2019 в 13:48
поделиться
Другие вопросы по тегам:

Похожие вопросы: