Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please search the forum at http://clearspace.openqa.org for error details from the log window. The error message is: Permission denied

I am getting error when i am trying to execute Selenium.IsElementPresent(ticketLocator)

Help me!!

share|improve this question

1 Answer

Yeah got the answer. Basically with the selenium I was clicking a button and then directly calling this

Selenium.IsElementPresent(ticketLocator)

and not waiting for the page to load.

Selenium.Click(elementId);
Selenium.WaitForPageToLoad(milliseconds.ToString()); // milliseconds

So now after clicking I am waiting for 3 seconds and it started working fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.