7,475 reputation
1728
bio website
location Prague, Czech Republic
age 23
visits member for 1 year, 2 months
seen 29 mins ago
stats profile views 661

Stack Exchange - Favorite Users - A browser addon that highlights answers and questions by your favorite users!


16h
comment How to handle windows file upload window when using selenium
Ohhh, right. WebDriver doesn't return from the click() method until you closed the popup - that means you have to click on it with something else in order to use Robot. Interesting. Anyway, am I reading it right that the sendKeys() works? I am confused as to where the problem appears and what actually happens =/.
17h
comment How to handle windows file upload window when using selenium
Absolutely not. Could you show us your code? I can reliably use the Robot class to upload a file. Anyway, a better way is to use the sendKeys() method on the <input type='file'> element. Did you try that?
1d
comment How to handle windows file upload window when using selenium
Are you talking about Selenium RC, or WebDriver? The former has the attachFile() method, the latter uses sendKeys() (the link also has some tips about the Robot class usage which, if used properly, also always works).
1d
comment how to use contain method in stack of two dimensional Integer array in java
Additionally, don't use the Stack class if you're not absolutely sure you want to do so. It's an old legacy code (based off Vector, so it is synchronized) which has been implemented better by the Deque interface and ArrayDeque and/or LinkedList.
May
14
comment What algorithms can be used to develope a download manager software as a project?
This question got closed, because it doesn't ask a specific programming question. There's no specific problem you're trying to solve and therefore this site is not the right place to ask. I'm not sure where you could ask, however. There are TONS of algorithms and design patterns to use - but you don't want to pick them before you have your software designed. Write down everything your program will have to do, then think about the ways of how to do those things. If you're unsure how to do a specific feature, feel free to come back.
May
11
comment Shuffling deck algorith
Or at least Collections.swap()?
May
7
comment I can't get selenium webdriver to recognize elements on a modal that fades in
I'm on mobile, so I can't give a full answer. Have you implemented any sort of waiting mechanism? Try googling "webdriver implicit wait" and "webdriver explicit wait".
May
7
comment Selenium server v2 is unable to find element by xpath “//html”
This, while it most likely uncovers the cause of the problem, should be a comment, not an answer.
May
7
comment Less Than XPath
//product[saleprice < retailprice] or /root/product[saleprice < retailprice] works well when I repair the document to be XML valid.
May
7
comment Selenium and HTML Window location
@Merkidemis Well, you could run it at every new browser window opened (after a switchTo() method call), but it's true that those values won't change too much across different sessions. What about a middle way? Run calibration the first time and store the values locally in a file?
Apr
30
revised Using a SerialBlob vs byte[]
added 316 characters in body
Apr
30
revised Using a SerialBlob vs byte[]
added 316 characters in body
Apr
30
answered Using a SerialBlob vs byte[]
Apr
29
answered Complete List of Commands of SELENIUM IDE
Apr
29
comment long running selenium test - Browser dies
@confusified Scenario 1 is clear to me and you are right that simply restarting the browser is not really an option, sadly. So my solution is not really viable. I'll delete the answer. Scenario 2 is okay, the problem would propagate well and the test would fail as needed.
Apr
29
comment long running selenium test - Browser dies
@confusified I'm not sure I understand correctly. Do you need a single browser instance in order to test the application? That means that once the browser dies, you can't continue testing at the point you ended? Oh, in that case, we need to find the reason for the browser crash, indeed.
Apr
29
answered long running selenium test - Browser dies
Apr
29
comment long running selenium test - Browser dies
Does this happen with any browser, are are you lot using the same one?
Apr
28
comment Sorting an ArrayList of Hashmap<String,Object> by int value
@OmArHesham That looks generally ok. Does it work for you? If yes, why do you ask? If not, what's wrong? Also, I thought that you use "distance" and not "distanceFromMe".
Apr
23
comment Object.isArray() is slow, is there a fast way to do that?
This does not answer your question, but it's a nice addition to the discussion: stackoverflow.com/questions/219881/…