How to change page zoom level in selenium web driver? I tried:
driver.Keyboard().pressKey(Keys.Control);
driver.Keyboard().pressKey(Keys.Add);
But it doesn't work.
|
|
Beware that Selenium assumes the zoom level is at 100%! For example, IE will refuse to start (throws an Exception) when the zoom level is different, because the element locating depends on this and if you changed the zoom level, it would click on wrong elements, at wrong places. JavaYou can use the
Use cautiously and when you're done, reset the zoom back to 100%:
C#(since I realized C# bindings don't have the Or, you can use the Advanced User Interactions API like this (again, Java code, but it should work the same in C#):
Again, don't forget to reset the zoom afterwards:
Note that the naïve approach
doesn't work, because the Ctrl key is released in this |
||||
|
|