in reply to Re: Tab closing Mechanize::Firefox
in thread Tab closing Mechanize::Firefox

Hi ww,
I did not intend on this being a 'gimme' post, sorry if it seemed that way. I have read the documentation and implemented it in a way that I understood to be the correct method. I will investigate it further, thank you for your consideration

Replies are listed 'Best First'.
Re^3: Tab closing Mechanize::Firefox
by PerlSufi (Friar) on Jul 15, 2013 at 16:35 UTC
    For those who wonder how to do it in the future, I implemented something similar to the following method:
    my $site_tab = "my site"; my $ff = Firefox::Application->new(); $mech->get('https://mysite.com'); $ff->closeTab($site_tab);