Send Selenium-users mailing list submissions to
selenium-users@lists.public.thoughtworks.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.public.thoughtworks.org/mailman/listinfo/selenium-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Selenium-users digest..."
Today's Topics:
1. goBack (neko bsd)
2. Get src by alt. (neko bsd)
3. Re: user poll: who's using Selenium? (Pritesh Kothari)
4. Re: Get src by alt. (neko bsd)
5. Re: Get src by alt. (Mike Williams)
6. RE: Re: going loopy - where to find loops... (Ola Fjelddahl)
7. RE: Re: going loopy - where to find loops... (Ola Fjelddahl)
8. Re: user poll: who's using Selenium? (Jamie Orchard-Hays)
9. wrapper or alternatives (James Holstead)
----------------------------------------------------------------------
Message: 1
Date: Mon, 27 Jun 2005 17:35:04 +0900 (JST)
From: neko bsd <[EMAIL PROTECTED]>
Subject: [Selenium-users] goBack
To: selenium-users@lists.public.thoughtworks.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=iso-2022-jp
Hello.
I use TestRunner on HTA.
I want to use goBack.
But, goBack command don't function on HTA.
Can I use goBack on HTA?
__________________________________
Save the earth
http://pr.mail.yahoo.co.jp/ondanka/
------------------------------
Message: 2
Date: Mon, 27 Jun 2005 17:43:49 +0900 (JST)
From: neko bsd <[EMAIL PROTECTED]>
Subject: [Selenium-users] Get src by alt.
To: selenium-users@lists.public.thoughtworks.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=iso-2022-jp
Hello.
I want to get src by alt.
Can I get it?
<img src="" alt=xxx>
For example...
| something | //[EMAIL PROTECTED] | varxxx |
varxx is src(URL).
What shold I do?
__________________________________
Save the earth
http://pr.mail.yahoo.co.jp/ondanka/
------------------------------
Message: 3
Date: Mon, 27 Jun 2005 14:41:41 +0530
From: Pritesh Kothari <[EMAIL PROTECTED]>
Subject: Re: [Selenium-users] user poll: who's using Selenium?
To: [EMAIL PROTECTED], selenium-users@lists.public.thoughtworks.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain
Hi Grig,
I am using
Fedora Core 3, (on P4 -2.6 HT 4GB Ram,...)
Python 2.3.4 (#1, Oct 26 2004, 16:42:40),
Selenium Version: 0.4.0
Twisted-2.0.1
Python driver from svn on date: 21-06-2005
What I tried out was to install Twisted-2.0.1 first
with a driven python - selenium.
The thing is I couldn't figure out how exactly to
proceed and what exactly is happening at each stage.
Also from the given documentation, installation
itself didn't work out.
TIA
Pritesh
On Fri, 2005-06-24 at 08:59 -0700, Grig Gheorghiu wrote:
--- Pritesh Kothari <[EMAIL PROTECTED]> wrote:
We want to use selenium in production
the the thing is we are not able to set
it up yet for the driven python model
for external test site testing.
we could only look at what twisted is but couldn't
figure out how to install, also very less
info on its setup is available currently,
and thats how far where we have really reached.
Pritesh,
What exactly have you tried and it didn't work? I've been experimenting
with the twisted-based version of Selenium in the past, so I might be
able to help. If you could give some details about OS/platform, Python
version, Selenium version, etc, that would help.
Grig
------------------------------
Message: 4
Date: Mon, 27 Jun 2005 19:24:30 +0900 (JST)
From: neko bsd <[EMAIL PROTECTED]>
Subject: [Selenium-users] Re: Get src by alt.
To: selenium-users@lists.public.thoughtworks.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=iso-2022-jp
Hello.
I want to get src by alt.
Can I get it?
<img src="" alt=xxx>
For example...
| something | //[EMAIL PROTECTED] | varxxx |
varxx is src(URL).
What shold I do?
I wrote it.
function getInputSrc (inputElement)
{
return inputElement.src;
}
Selenium.prototype.doStoreSrcByAlt = function(target,
varName)
{
if (!varName)
{
// Backward compatibility mode: read the
ENTIRE text of the page
// and stores it in a variable with the
name of the target
value = this.page().bodyText();
storedVars[target] = value;
return;
}
var element = this.page().findElement(target);
storedVars[varName] = getInputSrc(element);
};
__________________________________
Save the earth
http://pr.mail.yahoo.co.jp/ondanka/
------------------------------
Message: 5
Date: Mon, 27 Jun 2005 20:36:33 +1000
From: Mike Williams <[EMAIL PROTECTED]>
Subject: Re: [Selenium-users] Get src by alt.
To: selenium-users@lists.public.thoughtworks.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-2022-JP
neko bsd wrote:
I want to get src by alt. Can I get it?
<img src="" alt=xxx>
For example... | something | //[EMAIL PROTECTED] | varxxx |
You were almost there. Try
| something | xpath=//[EMAIL PROTECTED]'xxx'] | varxxx |