This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
trying to send url with encoding inside - page.open doesnt work #11188
Labels
Comments
Can you please include the response of a |
this?
|
Yup, that's good, thanks. Does it work if you remove the encoded part of the URL? i.e.: |
yep. it gets past opening the page. |
I tried this against version 1.8.1 on OSX and it worked. I would suggest looking at the onResourceReceived and on ResourceRequested callbacks.
|
Due to our very limited maintenance capacity, we need to prioritize our development focus on other tasks. Therefore, this issue will be automatically closed (see #15395 for more details). In the future, if we see the need to attend to this issue again, then it will be reopened. Thank you for your contribution! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hi,
i'm trying to do something like
page.open('http://www.bestbuy.com/site/Apple%26%23174%3B+-+MacBook+Pro%AE+-+13.3%22+Display+-+4GB+Memory+-+500GB+Hard+Drive/5430505.p?id=1218646127726&skuId=5430505#',function(status){}.....
but getting no response. its like the page doesnt even start loading.
i also have this in my code,
page.onError = function (msg, trace) {
var msgStack = [' ERROR: ' + msg];
if (trace) {
msgStack.push(' TRACE:');
trace.forEach(function (t) {
msgStack.push(' -> ' + t.file + ': ' + t.line + (t.function ? ' (in function "' + t.function + '")' : ''));
});
}
console.error(msgStack.join('\n'));
};
page.onLoadStarted = function () {
console.log(' >> NOW LOADING ' + page.url + ' ');
};
but nothing gets printed.
The text was updated successfully, but these errors were encountered: