Почему строка кода подчёркнута красной линией? - C#

Узнай цену своей работы

Формулировка задачи:

Почему строка кода подчёркнута красной линией? Подчёркнута нижеприведённая строка: co.AddExtensions(new File(@"c:\soft\UD\GoogleChromePortable\1_1\Data\profile\SiteGeoIPLocator.crx")); Привожу код целиком
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using OpenQA.Selenium;
  11. //****//
  12. using System.Diagnostics;
  13. using OpenQA.Selenium.Chrome;
  14. using System.IO;
  15. //****//
  16. namespace WindowsFormsApplication1
  17. {
  18. public partial class Form1 : Form
  19. {
  20. IWebDriver Browser;
  21. public Form1()
  22. {
  23. InitializeComponent();
  24. }
  25. private void button1_Click(object sender, EventArgs e)
  26. {
  27. OpenQA.Selenium.Chrome.ChromeOptions co = new OpenQA.Selenium.Chrome.ChromeOptions();
  28. co.BinaryLocation = @"c:\soft\UD\GoogleChromePortable\1_1\GoogleChromePortable_1.exe";
  29. co.AddExtensions(new File(@"c:\soft\UD\GoogleChromePortable\1_1\Data\profile\SiteGeoIPLocator.crx"));
  30. co.AddArguments(@"c:\soft\UD\GoogleChromePortable\1_1\Data\profile\SiteGeoIPLocator.crx");
  31. // co.AddExtension(Path.GetFullPath("c:\soft\UD\GoogleChromePortable\1_1\profil\SiteGeoIPLocator\SiteGeoIPLocator.crx"));
  32. // chrome://extensions/
  33. //****//
  34. Browser = new OpenQA.Selenium.Chrome.ChromeDriver(co);
  35. Browser.Manage().Window.Maximize();
  36. Browser.Navigate().GoToUrl("http://google.com");
  37. IWebElement SearchInput = Browser.FindElement(By.Id("lst-ib"));
  38. SearchInput.SendKeys("проект домов" + OpenQA.Selenium.Keys.Enter);
  39. }
  40. private void button2_Click(object sender, EventArgs e)
  41. {
  42. }
  43. }
  44. }

Решение задачи: «Почему строка кода подчёркнута красной линией?»

textual
Листинг программы
  1. co.AddExtension(@"c:\soft\UD\GoogleChromePortable\1_1\Data\profile\SiteGeoIPLocator.crx");

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 4.385 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы