-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
click
after mouseOver
not working
#179
Comments
Hi, I cannot reproduce your problem. I added the test case for this issue as "issue179" branch.
|
Thanks @vmi for taking a look at this. I ran the html test in Selenium IDE and it works... but not with Before discovering this library, I was working on my own implementation to run selenese tests. private void mouseOver(WebElement element) {
Actions action = new Actions(driver);
action.moveToElement(element).build().perform();
} And this seems to work in this context. |
Hmmm, my test case failed on SeleniumIDE when change Please provide the test case and html in which SeleniumIDE succeeds and in which Selenese Runner fails. |
I just created a PR #180 with the test and updated markup. |
Hi, Note: I recommend to use |
Thank you... I will give it a shot and get back to you! On Tue, Jan 26, 2016 at 5:23 PM Motonori IWAMURO [email protected]
|
Looks like this fixed it! I was able to successfully run the test on the command line. Would this be the correct way to use it? Runner runner = new Runner();
runner.setDriver(driver);
runner.run("src/test/resources/selenese-runner.html"); |
Hmmm, it works on my environment.
|
@vmi, I was setting the driver timeouts explicitly and looks like that was causing the issue. |
Hi,
Firstly, let me say that I have been hunting for this application for a while!
Exactly what I have been looking for!
I am trying to incorporate it in an existing testing framework.
I ran into some issues with some rudimentary tests.
The use case requirement is to mouse over a nav item and click a link in the menu that is displayed which navigates to a new page. Below is the relevant selenese steps:
In the messages logged I see the
click
onmenu-item-1
succeeding, but the page does not navigate away causing all subsequent steps to fail.Is there something I am overlooking? How can I get this to work?
Thanks!
The text was updated successfully, but these errors were encountered: