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...
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@...
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; ...
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...
http://groups.csail.mit.edu/uid/chickenfoot/, and http://dunck.us/collab/GreaseMonkeyUserScriptsSpecific#head-2b681c0a24baff8899d7163cc7f805c75e1f44e4 I am all...
... 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 ...
... 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...
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...
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...
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...
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...
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...
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...
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. ...
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...
<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 ...
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...
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 ...
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...
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 ...
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...
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. ...
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...
... 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 ...