Search the web
Sign In
New User? Sign Up
win_tech_off_topic · Windows Technical: Off Topic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 56203 - 56232 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
56203
does anyone know how to change the font size settings of this browser control? i'm using this control to open an xml document, so i get all the nice...
mike
vista21
Offline Send Email
Dec 2, 2007
8:54 pm
56204
Could you just apply a XSL template? Then you could change other display settings to, if you so wanted. From: win_tech_off_topic@yahoogroups.com ...
Matt Lynch
M@...
Send Email
Dec 3, 2007
1:02 am
56205
oh.. i guess that would work. but i did figure out a quick and easy way with the following code: htmlDocInfo2 = (IHTMLDocument2)outboundWindow.Document; ...
mike
vista21
Offline Send Email
Dec 3, 2007
4:36 am
56206
I have an internal HR web app I have to fill in every 30 days with the exact same information. It's four pages of text boxes and check boxes and I'd like to...
Chris Sells
csells
Offline Send Email
Dec 4, 2007
5:33 pm
56207
... You crazy kids... always trying to get us to do your schoolwork for you! :P -- Curt Hagenlocher curt@......
Curt Hagenlocher
curt_hagenlo...
Offline Send Email
Dec 4, 2007
5:35 pm
56208
http://groups.csail.mit.edu/uid/chickenfoot/, and http://dunck.us/collab/GreaseMonkeyUserScriptsSpecific#head-2b681c0a24baff8899d7163cc7f805c75e1f44e4 I am all...
Ying Jin
yingjin_us
Online Now Send Email
Dec 4, 2007
5:46 pm
56209
... I have no experience with it, but here's a Python library that's intended for the purpose: http://wwwsearch.sourceforge.net/mechanize/ -- Curt Hagenlocher ...
Curt Hagenlocher
curt_hagenlo...
Offline Send Email
Dec 4, 2007
5:47 pm
56210
Ruby is all the rage... and Scott Hanselman seems to like it. Paul [0] http://wtr.rubyforge.org/ [1]...
Paul van Brenk
paul_van_brenk
Offline Send Email
Dec 4, 2007
5:49 pm
56211
... that does it all for me This isn't programmatic, but why not use AIRoboform[1] for the job? Its intent is to remember username/password, etc., that you...
Chris Wuestefeld
moebiusstreet
Offline Send Email
Dec 4, 2007
5:52 pm
56212
Any web testing framework should work for that matter. You could host IE and use it to fill it out, use Watin or Watir, fill it out once while using Fiddler...
Ryan Rinaldi (TT)
rrinaldi20
Offline Send Email
Dec 4, 2007
5:57 pm
56213
And of course there's curl[1], for those addicted to the command line. With a little effort, you can script something together to login and post all kinds of...
Arthur Warren
warren_herb
Offline Send Email
Dec 4, 2007
5:59 pm
56214
Is it smart enough to navigate between multiple pages itself? From: win_tech_off_topic@yahoogroups.com [mailto:win_tech_off_topic@yahoogroups.com] On Behalf Of...
Chris Sells
csells
Offline Send Email
Dec 4, 2007
6:00 pm
56215
There's also Web tests in Visual Studio for Testers--you can record a session (or import from Fiddler) and re-play it. If you need conditional logic, there's a...
Mark Cidade
marxidad
Offline Send Email
Dec 4, 2007
7:25 pm
56216
Any recommendations for a utility that will give me multiple clipboard buffers? I only really care about text buffers, but I would like it to work across all...
Jeff Fitzsimons
fitzsimj
Offline Send Email
Dec 4, 2007
7:37 pm
56217
Bah! Web tests???? Remember, you're dealing with HTTP here. WebRequest is your friend. Hook up TcpTrace or Fiddler, look at what's getting sent to where in the...
Chris Tavares
durgansmith
Offline Send Email
Dec 4, 2007
7:40 pm
56218
... That's even more evil than curl, which is saying something... Herb....
Arthur Warren
warren_herb
Offline Send Email
Dec 4, 2007
7:49 pm
56219
Considering that we're probably dealing with an asp.net app... there is some viewstate nastyness to deal with when recording and re-sending the http requests. ...
Paul van Brenk
paul_van_brenk
Offline Send Email
Dec 4, 2007
7:58 pm
56220
Visual studio web tests are straight HTTP-it doesn't go through IE. You can get a coded WebRequest-type experience with the convert-to-coded-test feature. It...
Mark Cidade
marxidad
Offline Send Email
Dec 4, 2007
8:01 pm
56221
Visual studio web tests automatically handle viewstate variables when you use its recorder. M. ... From: win_tech_off_topic@yahoogroups.com ...
Mark Cidade
marxidad
Offline Send Email
Dec 4, 2007
8:11 pm
56222
... clipboard ... http://www.bluemars.org/clipx/ -- Kyle Alons http://www.kinook.com/...
Kyle Alons
kalons
Offline Send Email
Dec 4, 2007
8:36 pm
56223
<sigh> I only have "Unit Test" as an option. Do I have to install something above VS08 Pro to get Web Test? From: win_tech_off_topic@yahoogroups.com ...
Chris Sells
csells
Offline Send Email
Dec 4, 2007
8:51 pm
56224
I believe you need Visual Studio Team Edition for Software Testers. From: win_tech_off_topic@yahoogroups.com [mailto:win_tech_off_topic@yahoogroups.com] On...
Ryan Rinaldi (TT)
rrinaldi20
Offline Send Email
Dec 4, 2007
8:59 pm
56225
Find either the full Team Suite SKU or VS For Team Testers and add the Tester features to your current install. M. From: win_tech_off_topic@yahoogroups.com ...
Mark Cidade
marxidad
Offline Send Email
Dec 4, 2007
9:42 pm
56226
Chris, Ryan's recommendation (WatiN) is seriously worth the look. You can write your tests in normal VSTS (i.e. no need for web tests) and the WatiN framework...
Rob Sanders
l_desailly
Offline Send Email
Dec 4, 2007
10:56 pm
56227
I have used WatiN. But the point is that this isn’t a test, it’s an app. And the underlying goal of this app is not to drive a UI, it’s to generate HTTP ...
Chris Tavares
durgansmith
Offline Send Email
Dec 4, 2007
11:11 pm
56228
I suggested it because my underlying assumption is that this is an ASP.NET app and ASP.NET apps really, really don't like being automated. You need to make...
Ryan Rinaldi (TT)
rrinaldi20
Offline Send Email
Dec 4, 2007
11:26 pm
56229
So, is there a recorder (ala the WaitN Recorder) that will generate .NET WebRequest code? From: win_tech_off_topic@yahoogroups.com ...
Chris Sells
csells
Offline Send Email
Dec 4, 2007
11:37 pm
56230
I really think that Microsoft should be able to afford a copy of Team Suite for your group. You might want to talk to your boss about a MSDN Subscription. ...
Shawn Wildermuth
aunyay
Offline Send Email
Dec 5, 2007
12:11 am
56231
Does WaTiN handle challenge/response Windows dialogues well? Webaii is another cool .Net-based web testing framework but its built-in dialog handling wasn't...
Mark Cidade
marxidad
Offline Send Email
Dec 5, 2007
12:19 am
56232
... It seems like Fiddler is almost there with the ability to generate a WebTest (which, unfortunately, I can't run right now). Has anyone built the Fiddler ...
Chris Sells
csells
Offline Send Email
Dec 5, 2007
12:42 am
Messages 56203 - 56232 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help