我是靠谱客的博主 糊涂太阳,这篇文章主要介绍如何在selenium中使用元素的innerHTML在selenium 中使用JavascriptExecutor 修改innerHTML,现在分享给大家,希望可以做个参考。

在selenium 中使用JavascriptExecutor 修改innerHTML

通过selenium获取的元素无法直接修改元素的内容。通过JavascriptExecutor能够实现对任意可视元素进行innerHTML的修改替换。代码示例如下:

c#代码示例

复制代码
1
2
3
4
5
6
7
// An highlighted block driver.Navigate().GoToUrl(@"https://www.facebook.com/xxxx"); IWebElement postEle = WaitForElementByXPath(driver, "//div[@id='PageComposerPagelet_']//*/div[@class='_1mf _1mj']", 60); IJavaScriptExecutor ex = (IJavaScriptExecutor)driver; string postText = AutoUtil.UnescapeHtml(File.ReadAllText("post.log")); ex.ExecuteScript("arguments[0].innerHTML = '" + postText + "';", postEle);

部分代码说明

WaitForElementByXPath是一个在规定时间定位元素的函数,如果定位不到,则返回Null, 可根据该值来判断页面的加载情况。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// An highlighted block public IWebElement WaitForElementByXPath(IWebDriver driver, string xpath, int timeout){ IWebElement ele = null; try{ WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(timeout)); ele = wait.Until<IWebElement>((d) => { try{ return d.FindElement(By.XPath(xpath)); }catch{ return ele; } }); }catch{ return ele; } return ele; }

UnescapeXml主要对一些html元素进行替换。

复制代码
1
2
3
4
5
6
7
8
9
// An highlighted block public static string UnescapeHtml(string escaped){ return escaped.Replace("&lt;", "<") .Replace("&gt;", ">") .Replace("&quot;", """) .Replace("&apos;", "'") .Replace("&amp;", "&"); }

随笔

接触selenium,主要是想实现facebook page页面的定期自动发帖子功能。最开始是使用sendkeys,但是facebook页面大多使用js进行动态渲染且tag一般都div与span,只查到上述方法可以实现innerHTML的替换更新。

如果你觉得对你有帮助,就打赏点吧
如果对你有帮助,就赏点吧

最后

以上就是糊涂太阳最近收集整理的关于如何在selenium中使用元素的innerHTML在selenium 中使用JavascriptExecutor 修改innerHTML的全部内容,更多相关如何在selenium中使用元素的innerHTML在selenium内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部