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

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);