User shizbiz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:57:31Zhttp://stackoverflow.com/feeds/user/124550http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1156767/c-with-selenium-ajax-dropdownlist-question1C# with Selenium Ajax DropdownList Questionshizbiz2009-07-21T00:48:59Z2009-07-23T03:27:33Z
<p>I have two dropdown lists, one containing a list of countries and one for states/regions that is not populated until one of the countries is selected. Both of these dropdowns are wrapped in an updatepanel. When I select the USA, the state dropdown list is filled with the 50 states and I am able to move forward from there.</p>
<p>We are using Selenium to run tests on this code, and the tests always break when it reaches the state dropdown. It either takes too long to generate the state list, or perhaps it just can't find the values since they are not in the initial html that is rendered. I've seen some things about a javascript "WaitForCondition" field, but can't find any details about how to use this in the selenium documentation. I'm not a javascript slouch, but am not the greatest with it either. Can anyone explain to me how you might go about solving my dilemma, and if it happens to require knowledge of how the WaitForCondition field, can you explain to me how I can get that to work?</p>
<p>For the record, I have seen this post: <a href="http://stackoverflow.com/questions/504849/using-waitforcondition-script-timeout-in-selenium-ide">(click here for semi-useful stackoverflow post)</a> but I do not understand how to relate it to my own situation. Thanks in advance for anything you can give me.</p>
http://stackoverflow.com/questions/1156767/c-with-selenium-ajax-dropdownlist-question/1169255#11692551Answer by shizbiz for C# with Selenium Ajax DropdownList Questionshizbiz2009-07-23T02:22:32Z2009-07-23T02:22:32Z<p>So it turns out I have found the solution to my own problem. </p>
<p>I used the following line in my C# tests and it finds the value in my dropdown list instantly:</p>
<pre><code>selenium.WaitForCondition("var ddl = selenium.browserbot.getCurrentWindow().document.getElementById('insert-id-of-dropdownlist-here'); ddl.options[ddl.selectedIndex].text == 'insert-text-value-to-search-for-in-dropdown-here';", "10000");
</code></pre>
<p>In the IDE I used the following parameters:</p>
<p><strong>Command</strong>: waitForCondition</p>
<p><strong>Target</strong>: var ddl = selenium.browserbot.getCurrentWindow().document.getElementById('insert-id-of-dropdownlist-here'); ddl.options[ddl.selectedIndex].text == 'insert-the-text-value-to-search-for-in-dropdown-here';</p>
<p><strong>Value</strong>: 10000</p>
<p>This is the page that ultimately helped me figure out the solution:
<a href="http://wiki.openqa.org/display/SEL/waitForCondition" rel="nofollow">http://wiki.openqa.org/display/SEL/waitForCondition
</a></p>
http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c2 Randomly generated hexadecimal number in C#shizbiz2009-06-28T02:29:04Z2009-06-28T02:43:06Z
<p>How can I generate a random hexadecimal number with a length of my choice using C#?</p>
http://stackoverflow.com/questions/1041073/polymorphism-not-working-like-i-thought-it-would/1041145#10411450Answer by shizbiz for Polymorphism Not Working Like I Thought It Would?shizbiz2009-06-24T21:38:53Z2009-06-24T21:38:53Z<p>Using your example here's how Polymorphism can be implemented:</p>
<pre><code>// cast derived object as base object
Decal myGenericDecal = null;
TransactionDecal myTransactionDecal = TransactionDecal.GetTransactionDecal()
myGenericDecal = myTransactionDecal;
// cast base object to a derived object
TransactionalDecal newTransactionalDecal = null;
newTransactionalDecal = (TransactionalDecal)myGenericDecal;
</code></pre>
http://stackoverflow.com/questions/1025920/using-jquery-in-a-subfolder-when-the-masterpage-is-in-the-root-folder1Using JQuery in a Subfolder When the MasterPage is in the Root Folder.shizbiz2009-06-22T07:38:17Z2009-06-22T07:47:47Z
<p>I am trying to use the jquery library in ASP.NET in a subfolder called "samples" with a masterpage that is located in the root directory. Presently the references to the jquery scripts are located in the head tag of the master page. If the page I am creating is also in the root directory, everything works fine. If I move the page to the "samples" subdirectory, the jquery breaks.</p>
<p>I can fix the problem by using something like the following in the head tag:</p>
<p><code><script src="<%=ResolveUrl("~/js/jquery.js")%>" type="text/javascript"></script></code></p>
<p>...but then I lose the ability to use jquery intellisense, because I am no longer directly connected to the file in design time.</p>
<p>So my quesiton is this: How can I use the jquery library on a .aspx page without losing connectivity to the intellisense when my page is in a subfolder and the master page is in the root?</p>
http://stackoverflow.com/questions/1156767/c-with-selenium-ajax-dropdownlist-question/1169255#1169255Comment by shizbiz on C# with Selenium Ajax DropdownList Questionshizbiz2009-07-24T01:03:49Z2009-07-24T01:03:49ZThere is no question the javascript is a pain. I hope I don't have to use this solution often, but it does execute extremely quickly and it does solve my problem. We ultimately are going to have an very large number of these unit tests, so speed is highly valued here, much more than code readability. But I definitely see where you are coming from. Thanks for your help here.http://stackoverflow.com/questions/1156767/c-with-selenium-ajax-dropdownlist-question/1167836#1167836Comment by shizbiz on C# with Selenium Ajax DropdownList Questionshizbiz2009-07-23T01:59:20Z2009-07-23T01:59:20ZI do have Selenium IDE. Your solution actually does work in an extremely weird (and not acceptable) way. The waitForText method searches for the value in question, does not find it, and ultimately times out. But because it waited so long to time out, that failure ultimately allows enough time to pass for the IDE to recognize that the dropdown has been populated and the statement that selects the option now finds the value it wants. http://stackoverflow.com/questions/1025920/using-jquery-in-a-subfolder-when-the-masterpage-is-in-the-root-folder/1025947#1025947Comment by shizbiz on Using JQuery in a Subfolder When the MasterPage is in the Root Folder.shizbiz2009-06-22T08:09:19Z2009-06-22T08:09:19ZThis works for both folders, but doesn't connect me to the intellisense.http://stackoverflow.com/questions/1025920/using-jquery-in-a-subfolder-when-the-masterpage-is-in-the-root-folder/1025933#1025933Comment by shizbiz on Using JQuery in a Subfolder When the MasterPage is in the Root Folder.shizbiz2009-06-22T08:02:21Z2009-06-22T08:02:21ZSorry, in the second line I meant to point out that the / should be removed, like this: <%if(true){%> <script src="js/jquery.js" type="text/javascript"></script> <%}%>http://stackoverflow.com/questions/1025920/using-jquery-in-a-subfolder-when-the-masterpage-is-in-the-root-folder/1025933#1025933Comment by shizbiz on Using JQuery in a Subfolder When the MasterPage is in the Root Folder.shizbiz2009-06-22T08:01:04Z2009-06-22T08:01:04ZI take it back. When I add
<script src="/js/jquery.js" type="text/javascript"></script>
followed by
<%if(true){%>
<script src="/js/jquery.js" type="text/javascript"></script>
<%}%>
Then it works in both the root and the subfolder, and intellisense works in both places. Good enough for now. Thank you.http://stackoverflow.com/questions/1025920/using-jquery-in-a-subfolder-when-the-masterpage-is-in-the-root-folder/1025933#1025933Comment by shizbiz on Using JQuery in a Subfolder When the MasterPage is in the Root Folder.shizbiz2009-06-22T07:56:18Z2009-06-22T07:56:18ZI have verified that the / before js does indeed allow the code to run in both folders (so it's a better solution than the ResolveUrl), but it still will not allow me to see intellisense. The intellisense trick you listed does not work either.