Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在您的 html 标记(如 )中嵌套引号style="background-image: url("/designer/images/fullscreen.png");"可能会使 xpath 难以解析它。考虑用单引号替换内部引号。
style="background-image: url("/designer/images/fullscreen.png");"
至于您的具体问题,您应该能够使用更简单的方法来定位要单击的元素,仅使用按钮元素的 id。Web 元素上的 ID 属性在该页面中应该是唯一的。尝试使用By.id("ext-gen512").
By.id("ext-gen512")