Mozy Online Backup: 2GB Free. Automatic. Secure.
Subject: Re: Strange behavior - msg#00053
List: web.selenium.user
My apologies...this has been traced to displaying 'debugging information' on
ColdFusion pages. Moderators, feel free to delete this thread.
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=2635&messageID=7111#7111
---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-users-unsubscribe-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
For additional commands, e-mail:
selenium-users-help-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
Re: Page Open failure in Firefox
Could you post your html? I'm esp. curious about the Window.resizeTo call --
is that from your js?
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=2638&messageID=7110#7110
---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-users-unsubscribe-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
For additional commands, e-mail:
selenium-users-help-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
Next Message by Date:
click to view message preview
Misunderstanding variable substitution?
I am attempting to capture the value of a div and then use it to filter a later
form. My attempt looks like this (I'm using the Selenium IDE):
storeText | quoteID | qid
clickAndWait | link = Next
type | FiltQuoteID | ${qid}
When that didn't work, I thought I try to understand variables. So I tried:
store | 3 | x
type | FiltQuoteID | ${x}
I expected that to put 3 in x and then allow me to type it into the form field
FiltQuoteID. What I get in the field instead in both cases is the literal
value, either "${qid}" or "${x}".
So I thought I would look closer at it again, and tried:
type | FiltQuoteID | javascript{storedVars['x']}
But that throws an error. Using the debugger, I can see storedVars is an
object, but it has no properties.
This was done both with Selenium IDE 7.5 and 8.0.
Am I missing something fundemental?
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=2643&messageID=7114#7114
---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-users-unsubscribe-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
For additional commands, e-mail:
selenium-users-help-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
Previous Message by Thread:
click to view message preview
Re: Strange behavior
Sorry, I meant to ask...does anyone out there have a clue why this would happen?
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=2635&messageID=7092#7092
---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-users-unsubscribe-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
For additional commands, e-mail:
selenium-users-help-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
Next Message by Thread:
click to view message preview
Re: Mouse double-click events
//double click action
Selenium.prototype.doDoubleClick = function(locator) {
var element = this.page().findElement(locator);
this.page().mouseDownElement(element);
this.page().doubleClickElement(element);
this.page().mouseUpElement(element);
};
MozillaPageBot.prototype.doubleClickElement = function(element) {
triggerEvent(element, 'focus', false);
// Trigger the dblclick event.
triggerMouseEvent(element, 'dblclick', true);
if (this.windowClosed()) {
return;
}
triggerEvent(element, 'blur', false);
};
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=994&messageID=7095#7095
---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-users-unsubscribe-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx
For additional commands, e-mail:
selenium-users-help-Ltt7FjPjUpcdnm+yROfE0A@xxxxxxxxxxxxxxxx