in reply to Tab closing Mechanize::Firefox

Have you read the docs? Have you searched this site? ...the www? Have you tried to help yourself?

This is a "gimme" post -- give me the answer so I don't have to hunt it up. That's a big -   - in my book... especially since you've been counseled about this before.

If I've misconstrued your question or the logic needed to answer it, I offer my apologies to all those electrons which were inconvenienced by the creation of this post.

Replies are listed 'Best First'.
Re^2: Tab closing Mechanize::Firefox
by PerlSufi (Friar) on Jul 14, 2013 at 17:41 UTC
    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
      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);