-
Notifications
You must be signed in to change notification settings - Fork 54
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
setValue doesn't work #68
Comments
When I do this via the the MS Inspect tool (which makes the same calls via automation), I can get the control, but set value returns ERROR - NOT IMPLEMENTED. There might be a setting for Firefox and automation, I will try and find out. |
Okay, Thanks. :) |
Hi @mmarquee
Error: Any suggestions? |
我也是这个问题,请问你解决了吗?如何解决的?我的方法如下: |
It was possible to open the firefox browser, but not to set the value of the adress line.
My fault or is there a problem with the setValue()-function?
AutomationEditBox editBox = window.getEditBox("Suche oder Adresse eingeben");
TimeUnit.SECONDS.sleep(2);
editBox.setValue("Suchbegriff");
System.out.println("Name: " + editBox.getValue());
AutomationButton automationButton = window.getButton("In der Adressleiste eingegebene Adresse laden");
automationButton.click();
The text was updated successfully, but these errors were encountered: