1
Answer

automated webtests

warwulfi

warwulfi

21y
1.7k
1
Hi, I'm using c# to write automated tests. Testing software itself can be handled by accessing the different window handles..... but how do I proceed, if I want to identify the different objects embedded in a IE window ? (e.g. the different fields and buttons that appear on a webpage, or in a MacromediaFlashPlayerActiveX form...) has anyone aleady gathered some experience with this ? thx :) Ulf
Answers (1)
0
Mohammed Ismail

Mohammed Ismail

NA 3 0 18y
Hi Kavita:

For your second question removing of previous and next month days:  you can not remove them but you can hide them by setting those days back and forecolors using OtherMonthDayStyle attribute of Calendar.

Eg: <OtherMonthDayStyle ForeColor="Blue" BorderStyle="None" BorderColor="Blue" BackColor="Blue"></OtherMonthDayStyle>


But those cells are selectable in order to suppress this, add this in DayRender event of calendar:

if (e.Day.IsOtherMonth==true)
   {
    e.Cell.BackColor = System.Drawing.Color.Blue;
    e.Cell.ForeColor = System.Drawing.Color.Blue;
    e.Day.IsSelectable = false;
  }


in Page_Load event add this:

Calendar1.Attributes["onMouseDown"] = "JavaScript:Void(0);";

try out this.
Next Recommended Forum