Re #214 - configurable wait extra seconds for webdriver requests before extracting text (#606)

This commit is contained in:
dgtlmoon
2022-05-17 18:35:33 +02:00
committed by GitHub
parent 31fea55ee4
commit 67c833d2bc
10 changed files with 62 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
$(document).ready(function() {
function toggle() {
if ($('input[name="application-fetch_backend"]:checked').val() != 'html_requests') {
$('#requests-override-options').hide();
$('#webdriver-override-options').show();
} else {
$('#requests-override-options').show();
$('#webdriver-override-options').hide();
}
}
$('input[name="application-fetch_backend"]').click(function (e) {
toggle();
});
toggle();
});