in reply to Re: Clicking on Confirmation Button (JS) using WWW::Mechanize::Firefox
in thread Clicking on Confirmation Button (JS) using WWW::Mechanize::Firefox

it's a javascript popup confirm box
  • Comment on Re^2: Clicking on Confirmation Button (JS) using WWW::Mechanize::Firefox

Replies are listed 'Best First'.
Re^3: Clicking on Confirmation Button (JS) using WWW::Mechanize::Firefox
by Corion (Patriarch) on Feb 17, 2017 at 17:53 UTC

    What do you mean by "javascript popup confirm box"?

    Is it the kind of dialog box like the one opened by a call to the Javascript/browser alert() function or is it some HTML that asks for confirmation?

    If it is a call to alert(), then the easiest approach is to replace that confirmation button with a Javascript function that returns the result you want:

    $mech->evaluate_in_page(<<'JS'); window.alert = function(msg) { return true }; JS