Jump to content

mLipok

MVPs
  • Posts

    11,363
  • Joined

  • Last visited

  • Days Won

    58

mLipok last won the day on April 18

mLipok had the most liked content!

About mLipok

Profile Information

  • Member Title
    I'm nitpicky sometimes.
  • Location
    Europe, Poland, Upper Silesia, Zabrze
  • Interests
    ¯\_(ツ)_/¯

Recent Profile Visitors

22,173 profile views

mLipok's Achievements

  1. @baselz have you tried using: ?
  2. try also: https://github.com/mlipok/Au3WebDriver-testing
  3. added to: https://www.autoitscript.com/wiki/WebDriver#References
  4. It is a small change not a bunch of changes, so I decide to submit PR without any issue
  5. https://github.com/Danp2/au3WebDriver/pull/517 Finally, I had the need to make an appropriate change for an identical task. ps. I have only just migrated this task/project from MOZREPL, so I have only now proposed an appropriate change.
  6. Do you expect something like this: https://stackoverflow.com/a/64416329/5314940 or like this: https://forum.katalon.com/t/how-to-retrieve-response-header-of-a-network-request-in-a-browser/63834/4 or like this: https://github.com/SeleniumHQ/selenium/issues/12936 ?
  7. You can just use JavaScript: const xhr = new XMLHttpRequest(); xhr.open("GET", "https://jsonplaceholder.typicode.com/posts/1"); xhr.send(); xhr.responseType = "json"; xhr.onload = () => { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.response); } else { console.log(`Error: ${xhr.status}`); } }; https://www.freecodecamp.org/news/javascript-get-request-tutorial/ to initialize your own POST, GET, and any of type: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods But I do not know a way to intercept headers from website within WebDriver .
  8. We had few zoom meetings witch give us a new look on each other.
  9. btw. Used several times today. It worked like a charm.
  10. There was a time when I had major depression combined with professional burnout. I'm getting over it. In the meantime, I didn't feel like programming, so I might have forgotten some things
  11. My fault - wrong wording. Let me correct my statement. I missed this one. I missed this functionality. I was not a conscious user in this regard.
  12. Getting old , and overworked 🥺. Will answer ASAP , when back from weekend vacation.
  13. I found issue with calltips. Please try this snippet: _ArrayDisplay($aTest, "TITLE") _ArrayDisplay($aTest, "TITLE (v2)") place the cursor on v2 inside this bracket, try to bring caltips with CTRL+SHIFT+SPACE
  14. This is just game changer in my coding now. Thank you @mLipok try also CTRL+SHIFT+J to jump back. @Jos is the right person to answer here.
×
×
  • Create New...