Xpath - Selenium - Asp.net Generated IDs (JQuery Like Selection)

Dec 16, 2010

JQuery supports a syntax of $("span[id$='Label1']") to allow selection of ASP.NET INamingContainer generated ID's that have been prefixed with "ct100$...".

We are using Selenium and are looking for a similar way to select elements, ignoring the prefixes that ASP.NET generates.

View 3 Replies


Similar Messages:

How To Create A Web Site Using C#(not Used Asp.net) ,xml,xsl,xquery ,xpath ,jquery

Nov 13, 2010

how to create a web site using c#(not used asp.net) ,xml,xsl,xquery ,xpath ,jquery

View 3 Replies

JQuery Xpath Selector To Select An Element Which Id Contains 'sometext'?

Jan 16, 2010

I have a listbox element in aspx page which id is attributesList.

I want to select this element to track its change event, but i cant directly select its id because asp.net changes its id on runtime.

its id, attributesList changes into ctl00_adminPlaceHolder_attributesList.

so what i want to do is to use a "contains" xpath expression to select the element.

View 1 Replies

JQuery :: How To Use Jquery In Xslt That Fill A Combo Box ,also Require Xml ,xslt ,xpath Editior

Dec 29, 2010

[Code]....


View 2 Replies

JQuery :: Accessing The Gridview Text After Altering It With Jquery And Dropdown Selection?

Jan 31, 2011

i m having a bit of trouble here with .. i am changing the text from a dropdown inside the gridview to a cell inside that perticular row.... the code for the jquery i hav used to alter the text is :

[Code]....

the corresponding gridview is :

[Code]....

now after the text is changed into the corresponding cell ... i m trying to access it as per normal server side code as :

[Code]....

View 5 Replies

C# - Selenium 2 Cant Find Element ID Unless Go Directly To The .aspx File?

Jul 15, 2010

I'm trying to make the conversion to Selenium 2, but I seem to have an issue were if I go to http://website.com, Selenium cant find the elements of my aspx form. I need to have Selenium go directly to http://website.com/form.aspx. This isnt horrible because I can make sure the forms work, but ideally I would like it to complete everything from the users point of view.

View 2 Replies

How To Handle Save File Dialog Of Firefox In Selenium Using C#

Sep 29, 2010

i am using selenium for testing website which has functionality for downloading online video.i am using asp.net as language in selenium,each time i press download button save file dialog appears which cant be handle by selenium,how can i handle save file dialog(without using autoIt exe file).is there a way to call autoit script from selenium?or any other method to handle save file dialog???

View 2 Replies

Write A Few Web Tests (over WatiN/Selenium + CassiniDev Web Server) For .net Web Application?

Jan 15, 2011

I want to write a few web tests (over WatiN/Selenium + CassiniDev web server) for my asp.net web application.Problem I encountered is that I dont know what to do in such situations: there is a page where user can click the button to call some third-party service. In my web test i want to create mock of this service, which will always return static value (some value in these test case and other value in other test case).How can i do that?

Currently i use IoC/DI container Microsoft Unity. And my pages gets his dependencies in a manner described in http://msdn.microsoft.com/en-us/library/ff664622%28v=pandp.50%29.aspx.

The only solution that comes to my head is: place all dependencies in web.config for each test case and copy necessary web.config on SetUp of test.

View 1 Replies

Web Forms :: How To Simulate File Download Using Selenium Browser Automation

Apr 29, 2014

I want to test my site using selenium which is an automated test tool where we have to code, and in my scenario I have excel file which I want to download but on download box there is save button but i want to know how to click on Save button ...

View 1 Replies

How To Read Arrays Generated By EditorFor Using JQuery

Feb 16, 2011

I am using EditorFor to display values.

The code for the values to be generated are as follows:

<tr>
<td>@Html.HiddenFor(m => m.ID)@Html.CheckBoxFor(m => m.Authorized)</td>
<td>@Html.DisplayFor(m => m.ID)</td>
<td>@Html.DisplayFor(m=>m.UserName) </td>
</tr>

My aim here is upon the Checkbox is being checked, I need to post the ID value as follows:

[Code]....

However, var ID = $(this).parent().parent().find('#ID').val(); is undefined. How can I he read the ID value from the following generated HTML:

<td><input id="Employee_0__ID" name="Employee[0].ID" type="hidden" value="1100" /><input id="Employee_0__Authorized" name="Employee[0].Authorized" type="checkbox" value="true" /><input name="Employee[0].Authorized" type="hidden" value="false" /></td>
<td>user </td>

View 2 Replies

Jquery Tab Selection On Postback?

Jun 25, 2010

I have an asp.net page with some JQuery tabs. Everything works ok.I added a dropdownlist in one of the tabs, that causes a postback. After the postback I want the same tab to be selected.I initialize the tabs as:

<script type="text/javascript">
$(document).ready(function() {
var $myTabs = $(".tabsDiv").tabs();
</script>

Then, on the PageLoad event, I inject a script to select the tab:

Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "TabSelect", "$myTabs.tabs('select', 1);", true);

For some reason this doesn't work. The script is running but the tabs are not selected.Is it because the RegisterClientScriptBlock places the script in the bottom of the page and, for some reason, it runs too late?

View 2 Replies

JQuery :: Gridview Selection Remaining While User Is On That Row?

Feb 24, 2011

I have a page with a Search button, a gridview and a listview. When the Search button is clicked, the gridview fills up with a resultset and has a 'detail' linkbutton on each row. When the user clicks on the detail link, the listview below the gridview fills up with details related to the selected gridview row. My customers have asked if when they click on the gridview row, it becomes highlighted, and remains highlighted while they are working on the detail in the listview. So, I need to highlight the row when clicked, remove the highlight when a new row is clicked (as well as highlight the new row), and remove highlighting when the Search button is clicked. The highlight needs to remain over postback since there could be a full-page postback.

I'm thinking JQuery is the way to go but I am a JQuery novice and so would need a code sample.

View 7 Replies

JQuery :: Text Selection In Browser Is Not Working?

Mar 1, 2011

i am using jquery first time on my page , one of my user reports me the bug that when he is trying to select something from browser its not working.i think this is a common scenario when user select something from browser and paste in Google for searching purpose.

View 4 Replies

JQuery :: One Line, Two Separate Selection Sets?

Feb 28, 2011

Imagine you have this HTML layout:

<div id="msg"></div><br />
<div id="submitButton">
<input type="submit" value="OK" style="width:50px" onclick="$('div.subtleMsg').hide(); return false;" />
</div>

I know how to manipulate the contents of <div id="msg"> any way I wish but I'm wondering if it's possible, IN THE SAME LINE OF JQUERY CODE, to also manipulate <div id="submitButton">.

Everything has to be combined into one long jQuery string because I'm passing it from the server-side code as a script.

View 7 Replies

JQuery :: Send The Selected Values On Checkbox Selection?

May 22, 2010

i have a field set

[Code]....

on button click i am checking all checkboxes..and I have other button on the Filedset which i submit.. when I submit clicks I need to send only which ever is checked from Fieldset?

View 3 Replies

Asp.net - Disable The Multiple Selection From The List Box Using Jquery Or Javascript?

Dec 9, 2010

I have a list box in my page.<td><%=Html.ListBox("listServiceTypes", Model.ServiceTypeListAll, new { style = "width: 500px;height:200px;" })%>I need to disabled selecting multiple items from the list box? I am doing something like selecting one item and click delete button my page its delting one item from list box.. but If I select multple Items its throwing an error message.?Can any body help me out how to deactive or disable multiple items from list box.

View 2 Replies

How To Get Selected Text From Select Element On Selection Of Any Item Through JQuery

Mar 3, 2011

i have a select element with few items and the script.

[Code]....

on selection of any item from the dropdownlist how can i get the text selected from dropdown in the javaScript function that i have provided in onchange event handler ?

View 2 Replies

Radio Button Selection On Jquery Tabs Label Click

Jan 12, 2010

I had a simple working (ASP.NET) Scenario here: 3 asp:RadioButtons that each have OnCheckedChanged event that will update an asp:gridview. But now, I want to put some description for each radiobutton selection,and I thought it would be a good idea to embed them in JQuery UI Tabs like the following :

<div id="tabs">
<ul>
<li><a href="#tabs-1">
<asp:RadioButton ID="RadioButton1" runat="server" Text="option1" Checked="True"
AutoPostBack="True" OnCheckedChanged="RadioButton_CheckedChanged" /> </a></li>
<li><a href="#tabs-2">
<asp:RadioButton ID="RadioButton2" runat="server" Text="option2"
AutoPostBack="True" OnCheckedChanged="RadioButton_CheckedChanged" /></a></li>
<li><a href="#tabs-3">
<asp:RadioButton ID="RadioButton3" runat="server" Text="option3"
AutoPostBack="True" OnCheckedChanged="RadioButton_CheckedChanged" /></a></li>
</ul>
<div id="tabs-1"> <p> content1</p> </div>
<div id="tabs-2"> <p> content2</p> </div>
<div id="tabs-3"> <p> content3</p> </div>
</div>
and the jquery is
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>

I want the corresponding radiobuttons for each tabs be selected after switching to that tab (by clicking anywhere inside that tab) I don't know how to that probably by JQuery or JavaScript

Generated HTML source :
<div id="tabs" class="ui-tabs ui-widget ui-widget-content ui-corner-all">
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#tabs-1">
<input type="radio" checked="checked" value="RadioButtonCart" name="ctl00$ContentPlaceHolder1$g2" id="ctl00_ContentPlaceHolder1_RadioButtonCart"/><label for="ctl00_ContentPlaceHolder1_RadioButtonCart">option1</label></a></li>
<li class="ui-state-default ui-corner-top"><a href="#tabs-2">
<span style="color: Green;"><input type="radio" onclick="javascript:setTimeout('__doPostBack('ctl00$ContentPlaceHolder1$RadioButtonShetab','')', 0)" value="RadioButtonShetab" name="ctl00$ContentPlaceHolder1$g2" id="ctl00_ContentPlaceHolder1_RadioButtonShetab"/><label for="ctl00_ContentPlaceHolder1_RadioButtonShetab">option2</label></span></a></li>
<li class="ui-state-default ui-corner-top"><a href="#tabs-3">
<input type="radio" onclick="javascript:setTimeout('__doPostBack('ctl00$ContentPlaceHolder1$RadioButtonFish','')', 0)" value="RadioButtonFish" name="ctl00$ContentPlaceHolder1$g2" id="ctl00_ContentPlaceHolder1_RadioButtonFish"/><label for="ctl00_ContentPlaceHolder1_RadioButtonFish">option3</label></a></li>
</ul>
<div id="tabs-1" class="ui-tabs-panel ui-widget-content ui-corner-bottom">
<p> content1</p>
</div>
<div id="tabs-2" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide">
<p> content2 </p>
</div>
<div id="tabs-3" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide">
<p> content3 </p>
</div>
</div>

I solved 2 problems with adding ids to anchors like id="tabsA-1" and simulating the postback for

OnCheckedChanged="RadioButton_CheckedChanged" with $("#aspnetForm").submit();
<script type="text/javascript">
$(document).ready(function() {
$("#tabsA-1").click(function() {
$("#<%=RadioButtonCart.ClientID %>").attr("checked", "checked");
$("#aspnetForm").submit();
});
});
</script>

I just have to find a way to select the right tab after postback and my problem is solved.

<script type="text/javascript">
$(function() {
var $tabs = $("#tabs").tabs();
$tabs.tabs('select', '<%= selectedTabIndex %>');
});
</script>

which selectedTabIndex is a public string var in code_behind and i update its value in page_load. one funny problem was that the .tabs( 'select' , index ) in JQuery is not zero-based index of the tab as the official site said and it start from 1.

View 2 Replies

MVC :: Loaded A Cascading Drop Down List Using Jquery. However My Selection Does Not Update?

Oct 6, 2010

I have 2 dropdownlists, the second (department) cascades from the first (division). I use a jquery script to update the second drop down list. When the user clicks submit, the underlying model is updated, apart from the new value for department. 2 ideas I have for fixing this are; a) Generate a postback. Prefer not to do this because of bad user experience. b) With a JQuery change event, make a call to server side and set a ViewData variable that I can use to update the field in the model later.

However there must be a better way. This is the view;

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AdminAccounts.master"

View 7 Replies

AJAX :: Show Hide HTML DIV Based On ComboBox Selection Using JQuery?

Apr 10, 2014

i have 4 comboxes (com1, com2, com3,com4) and 4 tables (tab1, tab2, tab3, tab4)com1 and tab 1 have master table relationships i.e when in com1 the name is entered tab 1 shows the result of that entry. the same is for the rest comboxes and tables.

Now what i am trying to do is when an user clickes on com1 and types the name of the employee tab2 tab 3 and tab 4 should be hidden. if com2 is clicked tab1 and tab3, ta4 shoud be hidden.etc

Currenty i am using this code which i do not like. Is there any easy and short way to do hide an show.

this is the code i am using

<script type="text/javascript">
$("#com1").on('click', function () {
$("#div1").fadeIn();

[Code]....

View 1 Replies

AJAX :: Maintain Selection Of JQuery MultiSelect DropDownList Inside UpdatePanel

Dec 23, 2015

I have used jquery plugin for multiselect dropdown from the [URL] .... and when I submit the page It show nothing selected when post back from server What should I do ?

View 1 Replies

Data Controls :: Bind (Populate) CheckBoxList Based On DropDownList Selection Using JQuery AJAX

Jan 24, 2016

I have dynamically popute the data in Dropdownlist(Countries) and the On selected index event of Dropdownlist there is noeed to bind /populate the Checkbox list from database depending on the selections made from the Dropdownlist.

For example If I select Gujrata then all the cities of Gujrat should be visible and bounded to the check box list.

2) Once the checkbox list is bounded with data from the database, We need to select  the checkbox from the checkboxlist  and  pass tyhe selected  text of all the  selected checkboxes  fro the checkbox list  as comma seperated  values to database  and then I need to Display in the Grid.

Below is my code for Dynamically populated/Bind DropDown list and get the States:

ASPX:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MachineCode.aspx.cs" Inherits="SampleApp.MachineCode" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">

[Code] .....

View 1 Replies

C# - How To Use XPath To Link My XML Document

Mar 4, 2011

Do I have to use XPath to link my XML document to a repeater or is there another way. here is my some of my code.

first page loop through data and store as XML:

public virtual void Button_Click(object sender, EventArgs args)
{
TableControl recControls = (TableControl)this.Page.FindControlRecursively("TableControl");
if (recControls != null)
{
TableControlRow[] rows = recControls.GetSelectedRecordControls();
this.Page.Session["RegistrationTableControl"] = rows;
// create XML writer to
using(System.Xml.XmlWriter writer = System.Xml.XmlWriter.Create(@"c: emp

[Code]....

I have take the XML data and place them in page 2 become the data source of the repeater.

View 2 Replies

How To Retrieve XML Data Using XPath Expression

Oct 19, 2010

I have a XMLDataSource somewhat like:

<bookstore>
<author>author1</author>
<publication>publication1</publication>
<book>
<genre>Thriller</genre>
<name>ABC</name>
</book>
<book>
<genre>Romance</genre>
<name>XYZ</name>
</book>
<book>
<genre>Horror</genre>
<name>000</name>
</book>
</bookstore>

I am storing these in a asp:formview. I am able to store author and publication values but not sure how can I store the value of book/name based on some condition? Actually I just want to use condition that I need to store the value of "name" if "genere=Romance". something like this. I tried using XPath expression bookstore/book/genre[. ='Romance'] but not sure how to access the value of tag. Checked the following resource:

[URL]

View 2 Replies

Difference Between The Xpath And Xpathselect In .net Datalist?

Feb 17, 2011

I got this question from programming asp.net and web-site called quickstart.asp.net.In this it is mentioned that xpath and xpathselect is how used and syntex but it is not mentioned how it differs in work, i ckecked but both are giving same result.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved