Недавний контент mark leenheer

  1. M

    C# code to trim url to root?

    Thank you sir! Useful snippet.
  2. M

    C# code to trim url to root?

    Anyone have a C# snippet they can post for trimming a URL to it's root?
  3. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    OK thanks, that is good to know!
  4. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    I have seen that video and I do know how to use mouse emulation, however it's never been clear to me if it's actually needed to avoid detection or not. Personally I'd love to see a post or tutorial about measures that can be taken to avoid being discovered as using automation. By your response...
  5. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    I am having some issues being detected on a site I am regging. I am wondering if I need to emulate mouse clicks for buttons and fields so that they use a random spot each time. Is this something that some sites may look at to determine if automation is being used?
  6. M

    Whats best way to handle this?

    Yes I know I can do that, but the entire point of this thread was to find a cleaner easier way to do that without all the loops and delays. The C# code is supposed to do that, but it's not. Thanks for the suggestion though, it looks like I will have to resort to that. I am still very...
  7. M

    Whats best way to handle this?

    Actually it works OK, but I've noticed it's taking a long time to find the elements 35+ seconds. http://screencast.com/t/GHwZr4I3D8BW Is this correct way to use it, put C# in front/on top of element I am waiting for? Any reason why it could be taking so long to find the element? Visually it...
  8. M

    Whats best way to handle this?

    Wow, can not believe I missed that.... derp. Works great thanks.
  9. M

    Whats best way to handle this?

    HtmlElement he; for(int i=0;i<20;i++) { he = instance.ActiveTab.FindElementByAttribute("fulltag,text,a,28"); if(!he.IsVoid) { break; } System.Threading.Thread.Sleep(2000); }
  10. M

    Is this new feature?

    http://screencast.com/t/lEsrD203Ub Is this meant to be a pseudo replacement for keyword emulation?
  11. M

    Whats best way to handle this?

    Meh Code is giving me an error :( Compile code of actionaction group id: 3be0fc92-ed76-4470-96b6-33ba21b3105a Error in action "CS1501" "No overload for method 'FindElementByAttribute' takes 4 arguments". [Строка: 4; Cтолбец: 10] Not sure if I have made a mistake in entering data or if it is...
  12. M

    Whats best way to handle this?

    Got it. Thanks!
  13. M

    Whats best way to handle this?

    Very good, I am not quite sure of what I need to put in "your data in parameters" could you expand on that a bit, maybe give an example? Thanks for help.
  14. M

    Whats best way to handle this?

    oops dupe post
  15. M

    Whats best way to handle this?

    I am regging a 2.0 site and they have added a long series of next buttons. There is no pageload since it's a window so unless I put in an extra long delay it can overrun them and error, especially if I run many threads. A wait for element would solve this easily, but that's not available yet...