Hello, sorry I'm also still learning Perl/programming, and I have never used any WWW::Mechanize modules, but I'm curious, and after looking at the Instagram login page with firefox devtools I would suggest simulating more page interaction, like what happens if you 'click' the user name input field with:

$mech->click({xpath => '//input@name="username"', single => 1 });
then fill the input field value with:
$mech->value( username => $user );
then 'click' Log In.

I also want to say it looks to me like the Javascript 'events' are what is preventing a simple solution here, and by simple I suppose I mean something that seems obvious to someone like me who doesn't really know javascript. Hope that may help, sorry if it was just wasting time, but I am curious to see if that would at least make the label go away in the first picture/example :)


In reply to Re^11: WWW::Mechanize::Chrome Instagram by Orangutan
in thread WWW::Mechanize::Chrome Instagram by damian1

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.