You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm playing around with WKZombie and I must say I enjoy it a lot! Great work.
A few questions have come up and I'm wondering if I could get some input.
What is the best/ most efficient way to get all the HTML of the current page?
I have tried inspect >>> execute("document.documentElement.outerHTML.toString()") where I evaluate the JavaScriptResult, but it's not ideal.
When I use execute does it disregard the wait time for previous Action? I.e:
In the above example the JavaScriptResult is nil. My guess is because the previous >>> get was a href and is not a document? How can I reference the page after a click?
If I'm logging in to a website and get an element by ID it works fine. If I later want to get another element I am struggeling to find a good way to run a similar operation. I.e: If the webView is already logged in the login sequence will fail as the login form does not exist. What is the best way to identify that the webView is already logged in?
How does WKZombie handle input values containing special characters? I'm thinking especially of the backslash (\) character.
Thanks!
The text was updated successfully, but these errors were encountered:
I'm playing around with WKZombie and I must say I enjoy it a lot! Great work.
A few questions have come up and I'm wondering if I could get some input.
I have tried
inspect >>> execute("document.documentElement.outerHTML.toString()")
where I evaluate the JavaScriptResult, but it's not ideal.When I use execute does it disregard the wait time for previous Action? I.e:
In the above example the JavaScriptResult is nil. My guess is because the previous
>>> get
was a href and is not a document? How can I reference the page after a click?If I'm logging in to a website and get an element by ID it works fine. If I later want to get another element I am struggeling to find a good way to run a similar operation. I.e: If the webView is already logged in the login sequence will fail as the login form does not exist. What is the best way to identify that the webView is already logged in?
How does WKZombie handle input values containing special characters? I'm thinking especially of the backslash (\) character.
Thanks!
The text was updated successfully, but these errors were encountered: