How to select drop down list value and then postback with PowerShell and IE 6.0 - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T05:26:19Zhttp://stackoverflow.com/feeds/question/881032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881032/how-to-select-drop-down-list-value-and-then-postback-with-powershell-and-ie-6-00How to select drop down list value and then postback with PowerShell and IE 6.0Mike2009-05-19T05:02:50Z2009-06-11T20:48:57Z
<p>This will set the value, but will not cause a postback:</p>
<pre><code>function SelectValue($ddl, $val) {
$ddl.options | % {$i = 0}{ if ($_.value -eq $val) {
$ddl.selectedIndex = $i; }; $i += 1; }
}
</code></pre>
<p>Also, once I get the postback working, will I need to add a delay, eg:</p>
<pre><code> while($ie.ReadyState -ne 4) {
start-sleep -m 100
}
</code></pre>
<p>The HTML looks something like this:</p>
<pre><code><select name="ddl" onchange="__doPostBack('ddl','')" language="javascript" id="ddl" class="required" style="width:100%;">
<option value="-- Please Select --">-- Please Select --</option>
<option value="Some Value">Some Value</option>
</select>
</code></pre>
<p><strong>Edit:</strong> Why would I want to do this in Powershell? Probably WatiN would be a lot simpler (though I've never used WatiN). But I'm just trying to figure out how to use Powershell to do quick, ad hoc, limited web site automation. I travel a lot and use different machines, and Powershell is one of the few constants that I can depend on.</p>
<p><strong>Solution:</strong> This turned out to be easy and it's quite useful because now I can literally script a page to come up, make a few selections, and click a submit button, as if by magic, and it's EASY. I think my love/hate relationship with Powershell is turning back to love. Anyway the key is to use the form submit instead of using the onchange event, which is known not to fire when invoked with javascript anyway. Here is how to do it: </p>
<pre><code>$frm = $ie.document.getElementById("frm");
$frm.submit();
</code></pre>
<p>I found that i did not have to wait for postbacks. For completeness, clicking a button is just like it is in javascript:</p>
<pre><code>$btnReport = $ie.document.getElementById("btnReport")
$btnReport.click()
</code></pre>
http://stackoverflow.com/questions/881032/how-to-select-drop-down-list-value-and-then-postback-with-powershell-and-ie-6-0/894791#8947910Answer by JasonMArcher for How to select drop down list value and then postback with PowerShell and IE 6.0JasonMArcher2009-05-21T19:52:28Z2009-05-21T19:52:28Z<blockquote>
<p>Why would I want to do this in
Powershell? Probably WatiN would be a
lot simpler (though I've never used
WatiN). But I'm just trying to figure
out how to use Powershell to do quick,
ad hoc, limited web site automation.</p>
</blockquote>
<p>Yes, you should use WatiN, but you want to use PowerShell? So use WatiN from PowerShell!</p>
<p>PowerShell is a general shell/scripting/automation tool. In order to get things done, PowerShell utilizes specialed tools (COM, WMI, .NET, etc.).</p>
<p>Here is something to get started with.</p>
<p><a href="http://poshcode.org/1108" rel="nofollow">http://poshcode.org/1108</a></p>
http://stackoverflow.com/questions/881032/how-to-select-drop-down-list-value-and-then-postback-with-powershell-and-ie-6-0/894854#8948540Answer by Tim2010 for How to select drop down list value and then postback with PowerShell and IE 6.0Tim20102009-05-21T20:06:18Z2009-05-21T20:06:18Z<p>You can use iMacros, it exposes a COM object and thus can be used directly from Powershell: <a href="http://wiki.imacros.net/PowerShell" rel="nofollow">http://wiki.imacros.net/PowerShell</a></p>
<p>Only disadvantage: Its not free. For a quick and easy <em>free</em> solution try the iMacros Firefox addon. It can also be used via the command line: <a href="http://wiki.imacros.net/iMacros_for_Firefox#Command_Line_Support" rel="nofollow">http://wiki.imacros.net/iMacros_for_Firefox#Command_Line_Support</a></p>